Skip to content

Commit 369d689

Browse files
committed
format everything
1 parent e2b20f8 commit 369d689

File tree

623 files changed

+33405
-30190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

623 files changed

+33405
-30190
lines changed

Common/src/main/java/at/petrak/hexcasting/annotations/SoftImplement.java

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,18 @@
99
// yoinky sploinky
1010

1111
/**
12-
* A purely-documentative annotation.
13-
* This annotation is used by developers in xplat code. The annotated method is intended
14-
* to "soft implement" a certain method in a loader specific interface that cannot be
15-
* named in xplat code and thus cannot be checked with @Override.
16-
* In this context, "soft implement" means to implement the method by matching the signature
17-
* with the intended interface method.
18-
* Examples of interfaces that we would use this for is IForgeItem or FabricItem.
19-
* <p>
20-
* The intent is that we audit such sites every major Minecraft version or so, to ensure
21-
* that they still properly override the intended target.
12+
* A purely-documentative annotation. This annotation is used by developers in xplat code. The
13+
* annotated method is intended to "soft implement" a certain method in a loader specific interface
14+
* that cannot be named in xplat code and thus cannot be checked with @Override. In this context,
15+
* "soft implement" means to implement the method by matching the signature with the intended
16+
* interface method. Examples of interfaces that we would use this for is IForgeItem or FabricItem.
17+
*
18+
* <p>The intent is that we audit such sites every major Minecraft version or so, to ensure that
19+
* they still properly override the intended target.
2220
*/
2321
@Retention(RetentionPolicy.SOURCE)
2422
@Target(ElementType.METHOD)
2523
public @interface SoftImplement {
26-
/**
27-
* What interface we're soft implementing
28-
*/
29-
String value();
24+
/** What interface we're soft implementing */
25+
String value();
3026
}

0 commit comments

Comments
 (0)