Skip to content

Commit 911783d

Browse files
committed
fixed a few issues with thw new task
1 parent 96798e7 commit 911783d

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

src/main/java/net/minecraftforge/gradle/user/TaskExtractDepAts.java

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* A Gradle plugin for the creation of Minecraft mods and MinecraftForge plugins.
3+
* Copyright (C) 2013 Minecraft Forge
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, write to the Free Software
17+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
18+
* USA
19+
*/
120
package net.minecraftforge.gradle.user;
221

322
import java.io.File;
@@ -26,7 +45,7 @@
2645
public class TaskExtractDepAts extends DefaultTask
2746
{
2847
@InputFiles
29-
private List<FileCollection> collections;
48+
private List<FileCollection> collections = Lists.newArrayList();
3049
@OutputDirectory
3150
private Object outputDir;
3251

0 commit comments

Comments
 (0)