Indentations break the feed.
[SquirrelJME.git] / buildSrc / src / main / java / cc / squirreljme / plugin / multivm / AlwaysFalse.java
blobdb1065b9f28f22f7a78f7e536695bb490e2ad596
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.plugin.multivm;
12 import org.gradle.api.Task;
13 import org.gradle.api.specs.Spec;
15 /**
16 * This always evaluates to false.
18 * @since 2020/10/31
20 public class AlwaysFalse
21 implements Spec<Task>
23 /**
24 * {@inheritDoc}
25 * @since 2020/10/07
27 @Override
28 public boolean isSatisfiedBy(Task __task)
30 return false;