langtools/test/tools/javadoc/CheckResourceKeys.java
changeset 40308 274367a99f98
parent 36526 3b41f1c69604
child 42496 49cd6effe616
equal deleted inserted replaced
40306:1a0fcaf3f2ed 40308:274367a99f98
     1 /*
     1 /*
     2  * Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   119     void findDeadKeys(Set<String> codeKeys, Set<String> resourceKeys) {
   119     void findDeadKeys(Set<String> codeKeys, Set<String> resourceKeys) {
   120         for (String rk: resourceKeys) {
   120         for (String rk: resourceKeys) {
   121             if (codeKeys.contains(rk))
   121             if (codeKeys.contains(rk))
   122                 continue;
   122                 continue;
   123 
   123 
   124             error("Resource key not found in code: " + rk);
   124             error("Resource key not found in code: '" + rk + "'");
   125         }
   125         }
   126     }
   126     }
   127 
   127 
   128     /**
   128     /**
   129      * For all strings in the code that look like they might be
   129      * For all strings in the code that look like they might be