Mariusz Sieroń 6 år sedan
förälder
incheckning
f3869b0098

+ 0 - 7
assira.drafts/pom.xml

@@ -21,13 +21,6 @@
             <artifactId>KeePassJava2</artifactId>
             <version>2.1.1</version>
         </dependency>
-        <dependency>
-            <groupId>com.sun</groupId>
-            <artifactId>tools</artifactId>
-            <version>${maven.compiler.target}</version>
-            <scope>system</scope>
-            <systemPath>${java.home}/../lib/tools.jar</systemPath>
-        </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>

+ 0 - 2
assira/src/test/java/net/ranides/assira/reflection/mockup/TestReflective.java

@@ -61,8 +61,6 @@ public class TestReflective {
     }
     
     public static void assertEquals(List<String> expected, IExecutables<? extends IExecutable> methods) {
-        methods.each(m -> System.out.println(asText(m)));
-        System.out.println("---");
         NewAssert.assertEquivalent(expected, remove(methods.list(m -> asText(m))));
     }