-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51d35d9
commit c406dfa
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
7 changes: 1 addition & 6 deletions
7
src/main/java/com/nomiceu/nomilabs/mixin/solarflux/INetworkSF.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
package com.nomiceu.nomilabs.mixin.solarflux; | ||
|
||
import org.spongepowered.asm.mixin.Final; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.Mutable; | ||
import org.spongepowered.asm.mixin.Shadow; | ||
import org.spongepowered.asm.mixin.gen.Accessor; | ||
import tk.zeitheron.solarflux.net.NetworkSF; | ||
|
||
@SuppressWarnings("unused") | ||
@Mixin(value = NetworkSF.class, remap = false) | ||
public interface INetworkSF { | ||
|
||
|
||
@Accessor | ||
public static void setINSTANCE(NetworkSF instance) {} | ||
static void setINSTANCE(NetworkSF instance) {} | ||
} |