Skip to content

Commit 9baefdc

Browse files
committed
Remove old version nag and banner
1 parent 3951589 commit 9baefdc

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

src/main/java/net/minecraftforge/gradle/common/BasePlugin.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,6 @@ public void execute(Project project)
215215

216216
public abstract void applyPlugin();
217217

218-
private static boolean displayBanner = true;
219-
220218
private void getRemoteJsons()
221219
{
222220
// MCP json
@@ -257,25 +255,6 @@ protected void afterEvaluate()
257255
"classifier", "srg",
258256
"ext", "zip"
259257
));
260-
261-
LOGGER.warn("WARNING: You are using an unsupported version of ForgeGradle.");
262-
LOGGER.warn("Please consider upgrading to ForgeGradle 5 and helping in the efforts to get old versions working on the modern toolchain.");
263-
LOGGER.warn("See https://gist.github.com/TheCurle/fe7ad3ede188cbdd15c235cc75d52d4a for more info on contributing.");
264-
265-
if (!displayBanner)
266-
return;
267-
268-
LOGGER.lifecycle("#################################################");
269-
LOGGER.lifecycle(" ForgeGradle {} ", this.getVersionString());
270-
LOGGER.lifecycle(" https://github.com/MinecraftForge/ForgeGradle ");
271-
LOGGER.lifecycle("#################################################");
272-
LOGGER.lifecycle(" Powered by MCP ");
273-
LOGGER.lifecycle(" http://modcoderpack.com ");
274-
LOGGER.lifecycle(" by: Searge, ProfMobius, R4wk, ZeuX ");
275-
LOGGER.lifecycle(" Fesh0r, IngisKahn, bspkrs, LexManos ");
276-
LOGGER.lifecycle("#################################################");
277-
278-
displayBanner = false;
279258
}
280259

281260
private String getVersionString()

0 commit comments

Comments
 (0)