We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d34548 commit 656de02Copy full SHA for 656de02
src/main/java/net/minecraftforge/gradle/tasks/SplitJarTask.java
@@ -65,24 +65,7 @@ public void doTask() throws IOException
65
@Override
66
public void visitDir(FileVisitDetails details)
67
{
68
- JarEntry entry = new JarEntry(details.getPath());
69
- entry.setSize(details.getSize());
70
- entry.setTime(details.getLastModified());
71
-
72
- try
73
- {
74
- zout1.putNextEntry(entry);
75
- details.copyTo(zout1);
76
- zout1.closeEntry();
77
78
- zout2.putNextEntry(entry);
79
- details.copyTo(zout2);
80
- zout2.closeEntry();
81
- }
82
- catch (IOException e)
83
84
- Throwables.propagate(e);
85
+ // ignore directories
86
}
87
88
0 commit comments