Skip to content

Commit

Permalink
Bumped version number and cleared up some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Jun 6, 2019
1 parent e3e78e0 commit 1864674
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.rayzr522</groupId>
<artifactId>ocmfixer</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
<name>OCMFixer</name>
<description>Fixes the attack speed of players</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;

@SuppressWarnings({"WeakerAccess", "unused"})
public class NbtFactory {
// Convert between NBT id and the equivalent class in java
private static final BiMap<Integer, Class<?>> NBT_CLASS = HashBiMap.create();
Expand Down Expand Up @@ -142,7 +143,7 @@ public static NbtList createList(Object... content) {
*
* @return The NBT list.
*/
public static NbtList createList(Iterable<? extends Object> iterable) {
public static NbtList createList(Iterable<?> iterable) {
NbtList list = get().new NbtList(
INSTANCE.createNbtTag(NbtType.TAG_LIST, null));

Expand Down

0 comments on commit 1864674

Please sign in to comment.