Browse Source

remove package name to ease the output

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1817600 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
Andreas Beeker 6 years ago
parent
commit
f182b44c62
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/integrationtest/org/apache/poi/TestAllFiles.java

+ 1
- 1
src/integrationtest/org/apache/poi/TestAllFiles.java View File

@@ -394,7 +394,7 @@ public class TestAllFiles {
fail("Did not find a handler for file " + file);
}

System.out.println("Reading " + file + " with " + handler.getClass());
System.out.println("Reading " + file + " with " + handler.getClass().getSimpleName());
assertNotNull("Unknown file extension for file: " + file + ": " + getExtension(file), handler);
File inputFile = new File(ROOT_DIR, file);


Loading…
Cancel
Save