Generic code cleanup

This commit is contained in:
Erik Broes
2011-02-23 13:56:36 +01:00
parent 332d9c4f18
commit 09aa37fe4a
57 changed files with 415 additions and 344 deletions

View File

@@ -34,14 +34,14 @@ public class PropertyManager {
private OptionSet options = null;
public PropertyManager(final OptionSet options) {
this((File)options.valueOf("config"));
this((File) options.valueOf("config"));
this.options = options;
}
private <T> T getOverride(String name, T value) {
if ((options != null) && (options.has(name))) {
return (T)options.valueOf(name);
return (T) options.valueOf(name);
}
return value;