Skip to content

Commit

Permalink
Stop using raw types for mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Mar 31, 2022
1 parent 5ca7b3b commit ffe6eb8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -11,10 +11,10 @@
public interface AccessTag {

@Accessor("elements")
List crafttweaker$getElements();
<T> List<T> crafttweaker$getElements();

@Mutable
@Accessor("elements")
void crafttweaker$setElements(List elements);
<T> void crafttweaker$setElements(List<T> elements);

}

0 comments on commit ffe6eb8

Please sign in to comment.