Skip to content

Commit

Permalink
Use jetbrains annotations instead of istack internal.
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Jul 4, 2020
1 parent 93201db commit 82a3be2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.wesjd</groupId>
<artifactId>anvilgui</artifactId>
<version>1.2.1-SNAPSHOT</version>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>18.0.0</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package world.bentobox.magiccobblestonegenerator.managers;


import com.sun.istack.internal.NotNull;
import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.*;
import java.util.stream.Collectors;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@



import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.Nullable;

import org.bukkit.World;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package world.bentobox.magiccobblestonegenerator.panels.player;


import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.Nullable;
import org.bukkit.Material;
import org.bukkit.World;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
package world.bentobox.magiccobblestonegenerator.utils;


import com.sun.istack.internal.NotNull;
import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.bukkit.Location;
import org.bukkit.metadata.MetadataValue;
import java.util.UUID;
Expand Down

0 comments on commit 82a3be2

Please sign in to comment.