Index: lutincommandline/src/java/org/codelutin/option/def/ConfigPropertyModifier.java diff -u lutincommandline/src/java/org/codelutin/option/def/ConfigPropertyModifier.java:1.1.1.1 lutincommandline/src/java/org/codelutin/option/def/ConfigPropertyModifier.java:1.2 --- lutincommandline/src/java/org/codelutin/option/def/ConfigPropertyModifier.java:1.1.1.1 Sat Feb 9 15:05:36 2008 +++ lutincommandline/src/java/org/codelutin/option/def/ConfigPropertyModifier.java Sun Mar 23 00:28:09 2008 @@ -56,23 +56,4 @@ return sb.toString().substring(1); } - /*public static void main(String[] args) { - int test1 = FINAL.intValue | STATIC.intValue; - Assert.assertTrue(FINAL.match(test1)); - Assert.assertTrue(STATIC.match(test1)); - Assert.assertFalse(TRANSIENT.match(test1)); - Assert.assertFalse(MANDATORY.match(test1)); - test1 = FINAL.intValue | STATIC.intValue | MANDATORY.intValue; - Assert.assertTrue(FINAL.match(test1)); - Assert.assertTrue(STATIC.match(test1)); - Assert.assertFalse(TRANSIENT.match(test1)); - Assert.assertTrue(MANDATORY.match(test1)); - - test1 = TRANSIENT.intValue; - Assert.assertFalse(FINAL.match(test1)); - Assert.assertFalse(STATIC.match(test1)); - Assert.assertTrue(TRANSIENT.match(test1)); - Assert.assertFalse(MANDATORY.match(test1)); - - } */ }