Skip to content

Commit

Permalink
Update bStats and add missing @NotNull annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMicky-FR committed Jul 22, 2019
1 parent 452342f commit 0399ed2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion compatibility/v7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
<artifactId>fawe-api</artifactId>
<version>1.13.164</version>
<scope>provided</scope>
<!--<systemPath>${project.basedir}/../../libs/FastAsyncWorldEdit-bukkit-1.13.jar</systemPath>-->
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.4</version>
<version>1.5</version>
<scope>compile</scope>
</dependency>
<!-- Particles library -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ public int getMaxSelectionSize() {
return maxSelectionSize;
}

public @NotNull SelectionConfig primary() {
@NotNull
public SelectionConfig primary() {
return primary;
}

public @NotNull SelectionConfig secondary() {
@NotNull
public SelectionConfig secondary() {
return secondary;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

/**
* Called when the WorldEdit clipboard of a player changed
*
*/
public class ClipboardChangeEvent extends Event {

Expand Down Expand Up @@ -58,6 +57,7 @@ public HandlerList getHandlers() {
return handlers;
}

@NotNull
public static HandlerList getHandlerList() {
return handlers;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public HandlerList getHandlers() {
return handlers;
}

@NotNull
public static HandlerList getHandlerList() {
return handlers;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public HandlerList getHandlers() {
return handlers;
}

@NotNull
public static HandlerList getHandlerList() {
return handlers;
}
Expand Down

0 comments on commit 0399ed2

Please sign in to comment.