This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 253854
Collapse All | Expand All

(-)openide.util/src/org/netbeans/modules/openide/util/NbBundleProcessor.java.orig (-1 / +1 lines)
Lines 272-278 Link Here
272
                }
272
                }
273
                try {
273
                try {
274
                    Set<String> restored = new TreeSet<String>();
274
                    Set<String> restored = new TreeSet<String>();
275
                    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));
275
                    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));
276
                    while (m.find()) {
276
                    while (m.find()) {
277
                        String identifier = m.group(1);
277
                        String identifier = m.group(1);
278
                        if (!methods.containsKey(identifier)) {
278
                        if (!methods.containsKey(identifier)) {

Return to bug 253854