Reformat code

This commit is contained in:
sauilitired
2018-08-10 17:01:10 +02:00
parent 02ee1e8fa1
commit 1646cd0f5a
437 changed files with 12795 additions and 14203 deletions
Bukkit
build.gradle
src
main
java
com
intellectualcrafters
plotsquared
bukkit
BukkitMain.java
chat
commands
database
events
generator
listeners
object
titles
util
uuid
Core
build.gradle
src
main
java
com
intellectualcrafters
configuration
jnbt
json
plot
IPlotMain.javaPS.javaPlatform.javaPlotVersion.javaUpdater.java
commands
config
database
flag
generator
logger
object
util
plotsquared
resources
test
java
com
intellectualcrafters
Nukkit
README.md
Sponge
build.gradlecode_style.xmlpom.xmlsettings.gradle

@ -7,7 +7,6 @@ import com.intellectualcrafters.plot.object.Plot;
/**
* Called when a Flag is added to a plot.
*
*/
public class PlotFlagAddEvent extends PlotEvent implements Cancellable {
@ -39,13 +38,11 @@ public class PlotFlagAddEvent extends PlotEvent implements Cancellable {
return this.flag;
}
@Override
public final boolean isCancelled() {
@Override public final boolean isCancelled() {
return this.cancelled;
}
@Override
public final void setCancelled(boolean cancelled) {
@Override public final void setCancelled(boolean cancelled) {
this.cancelled = cancelled;
}
}