Lines not necessary, were making ci fail

This commit is contained in:
Bruce Eckel 2016-07-08 14:35:56 -06:00
parent 348d7de52c
commit 1f6b857c80

View File

@ -11,8 +11,6 @@ public class PartsOfPaths {
Paths.get("PartsOfPaths.java").toAbsolutePath();
for(int i = 0; i < p.getNameCount(); i++)
System.out.println(p.getName(i));
Path sub = p.subpath(3, p.getNameCount() - 2);
System.out.println(sub);
System.out.println("ends with '.java': " +
p.endsWith(".java"));
for(Path pp : p) {