Remove superfluous semi-colons

This commit is contained in:
Phillip Webb
2014-12-26 20:48:53 -08:00
parent fe20116b68
commit d7a12a8791
17 changed files with 40 additions and 27 deletions

View File

@@ -29,40 +29,48 @@ public interface LibraryScope {
* The library is used at compile time and runtime.
*/
public static final LibraryScope COMPILE = new LibraryScope() {
@Override
public String toString() {
return "compile";
};
}
};
/**
* The library is used at runtime but not needed for compile.
*/
public static final LibraryScope RUNTIME = new LibraryScope() {
@Override
public String toString() {
return "runtime";
};
}
};
/**
* The library is needed for compile but is usually provided when running.
*/
public static final LibraryScope PROVIDED = new LibraryScope() {
@Override
public String toString() {
return "provided";
};
}
};
/**
* Marker for custom scope when custom configuration is used.
*/
public static final LibraryScope CUSTOM = new LibraryScope() {
@Override
public String toString() {
return "custom";
};
}
};
}

View File

@@ -128,6 +128,7 @@ public class RunProcess {
final BufferedReader reader = new BufferedReader(new InputStreamReader(
process.getInputStream()));
new Thread() {
@Override
public void run() {
try {
@@ -141,7 +142,8 @@ public class RunProcess {
}
catch (Exception ex) {
}
};
}
}.start();
}