Github user kaspersorensen commented on a diff in the pull request:
https://github.com/apache/metamodel/pull/37#discussion_r36543610
--- Diff: core/src/main/java/org/apache/metamodel/util/FileResource.java ---
@@ -19,16 +19,43 @@
package org.apache.metamodel.util;
import java.io.File;
+import java.io.FileFilter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
+import java.util.Arrays;
+import java.util.Comparator;
/**
* {@link File} based {@link Resource} implementation.
*/
public class FileResource implements Resource, Serializable {
+ private class DirectoryInputStream extends
AbstractDirectoryInputStream<File> {
--- End diff --
Hehe very nitty gritty, but since this nested class is non-static,
shouldn't it be declared after static fields?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---