commented out logging
This commit is contained in:
@@ -80,7 +80,7 @@ public class PropertiesSerializer {
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
if(myProperty==null) {
|
if(myProperty==null) {
|
||||||
System.out.println("Property "+pName+"["+pType+"] not set; input was null");
|
// System.out.println("Property "+pName+"["+pType+"] not set; input was null");
|
||||||
} else {
|
} else {
|
||||||
if (pType.equalsIgnoreCase("integer"))
|
if (pType.equalsIgnoreCase("integer"))
|
||||||
fields[i].set(this, Integer.parseInt(myProperty + ""));
|
fields[i].set(this, Integer.parseInt(myProperty + ""));
|
||||||
@@ -88,7 +88,7 @@ public class PropertiesSerializer {
|
|||||||
fields[i].set(this, Boolean.parseBoolean(myProperty + ""));
|
fields[i].set(this, Boolean.parseBoolean(myProperty + ""));
|
||||||
else
|
else
|
||||||
fields[i].set(this, myProperty);
|
fields[i].set(this, myProperty);
|
||||||
System.out.println("Property "+pName+"["+pType+"] set to: "+myProperty);
|
// System.out.println("Property "+pName+"["+pType+"] set to: "+myProperty);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
|||||||
Reference in New Issue
Block a user