Skip to content
Snippets Groups Projects
Commit ce581633 authored by david_williams's avatar david_williams
Browse files

minor fix

parent fce56699
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ public class FullJarNameParser {
private static final boolean DEBUG = false;
// simplified pattern: (ID) '_' (N '.' M '.' O '.' S) '.jar'
private String START_GROUP = "(";//$NON-NLS-1$
private String START_GROUP = "(";
private String END_GROUP = ")";
private String UNDERSCORE = "_";
private String BACKSLASH = "\\";
......@@ -40,7 +40,7 @@ public class FullJarNameParser {
public boolean parse(String line) {
boolean result = false;
projectString = "";
projectString = "";
versionString = "";
Matcher matcher = pattern.matcher(line);
if (!matcher.matches()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment