--- openide.util/src/org/netbeans/modules/openide/util/NbBundleProcessor.java.orig 2015-07-27 13:39:00.711962570 +0200 +++ openide.util/src/org/netbeans/modules/openide/util/NbBundleProcessor.java.orig 2015-07-27 13:39:33.974066346 +0200 @@ -272,7 +272,7 @@ } try { Set restored = new TreeSet(); - Matcher m = Pattern.compile(" /[*][*]\r?\n(?: [*].+\r?\n)+ [*] @see (?:[\\w-]+)\r?\n [*]/\r?\n static String (\\w+).+\r?\n .+\r?\n [}]\r?\n").matcher(processingEnv.getFiler().getResource(StandardLocation.SOURCE_OUTPUT, pkg, "Bundle.java").getCharContent(false)); + Matcher m = Pattern.compile(" /[*][*]\r?\n(?: [*].+\r?\n)+ [*] @see (?:[\\w-]+)\r?\n [*]/\r?\n static String ([\\w$]+).+\r?\n .+\r?\n [}]\r?\n").matcher(processingEnv.getFiler().getResource(StandardLocation.SOURCE_OUTPUT, pkg, "Bundle.java").getCharContent(false)); while (m.find()) { String identifier = m.group(1); if (!methods.containsKey(identifier)) {