# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. Index: versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/annotate/AnnotateAction.java --- versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/annotate/AnnotateAction.java Base (1.8) +++ versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/annotate/AnnotateAction.java Locally Modified (Based On 1.8) @@ -249,7 +249,7 @@ AnnotateLine [] lines = new AnnotateLine[annotations.size()]; int i = 0; - Pattern p = Pattern.compile("^\\s*(\\w+\\b)\\s+(\\d+)\\s+(\\b.*):\\s+(.*)$"); //NOI18N + Pattern p = Pattern.compile("^\\s*(\\w+\\b)\\s+(\\d+)\\s+(\\b.*):\\s(.*)$"); //NOI18N for (String line : annotations) { Matcher m = p.matcher(line); if (!m.matches()){