From 185a66aed59a83c6a6e928b0399679d6c31a16ca Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Sat, 9 Dec 2017 12:06:59 +0000 Subject: [PATCH] remove package name to ease the output git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1817600 13f79535-47bb-0310-9956-ffa450edef68 --- src/integrationtest/org/apache/poi/TestAllFiles.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/integrationtest/org/apache/poi/TestAllFiles.java b/src/integrationtest/org/apache/poi/TestAllFiles.java index 812e6c6b4..db543ce18 100644 --- a/src/integrationtest/org/apache/poi/TestAllFiles.java +++ b/src/integrationtest/org/apache/poi/TestAllFiles.java @@ -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);