Removing my name. Whoops!

This commit is contained in:
Diederik Muylwyk 2019-09-20 18:48:47 -04:00
parent 0cc35699b8
commit 56e2904029
1 changed files with 0 additions and 1 deletions

View File

@ -77,7 +77,6 @@ public class ZipCollectionBuilder {
private byte[] readFile(String theClasspathPrefix, String theClasspathFileName) throws IOException { private byte[] readFile(String theClasspathPrefix, String theClasspathFileName) throws IOException {
String classpathName = theClasspathPrefix + theClasspathFileName; String classpathName = theClasspathPrefix + theClasspathFileName;
InputStream stream = getClass().getResourceAsStream(classpathName); InputStream stream = getClass().getResourceAsStream(classpathName);
ourLog.info("DIEDERIK: " + classpathName);
Validate.notNull(stream, "Couldn't load " + classpathName); Validate.notNull(stream, "Couldn't load " + classpathName);
byte[] byteArray = IOUtils.toByteArray(stream); byte[] byteArray = IOUtils.toByteArray(stream);
Validate.notNull(byteArray); Validate.notNull(byteArray);