Remove duplicate method

This commit is contained in:
Jesse Boyd 2016-08-04 20:01:47 +10:00
parent 5725e3bdd3
commit 5eff53f1f8
6 changed files with 0 additions and 20 deletions

View File

@ -219,12 +219,6 @@ public class FaweBukkit implements IFawe, Listener {
return world.getName(); return world.getName();
} }
@Override
public String getUserName(UUID uuid) {
String name = Bukkit.getOfflinePlayer(uuid).getName();
return name != null ? name : uuid.toString();
}
/** /**
* A mask manager handles region restrictions e.g. PlotSquared plots / WorldGuard regions * A mask manager handles region restrictions e.g. PlotSquared plots / WorldGuard regions
*/ */

View File

@ -21,9 +21,6 @@ commands:
select: select:
description: (FAWE) Select your current WorldEdit Region. description: (FAWE) Select your current WorldEdit Region.
aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region] aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region]
frb:
description: (FAWE) Rollback an edit
aliases: [fawerollback,fawerb,/uu,/rb,/frb,/fawerollback,/fawerb]
fcancel: fcancel:
description: (FAWE) Cancel your edit description: (FAWE) Cancel your edit
aliases: [fawecancel,/fcancel,/cancel,/fawecancel] aliases: [fawecancel,/fcancel,/cancel,/fawecancel]

View File

@ -21,9 +21,6 @@ commands:
select: select:
description: (FAWE) Select your current WorldEdit Region. description: (FAWE) Select your current WorldEdit Region.
aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region] aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region]
frb:
description: (FAWE) Rollback an edit
aliases: [fawerollback,fawerb,/uu,/rb,/frb,/fawerollback,/fawerb]
fcancel: fcancel:
description: (FAWE) Cancel your edit description: (FAWE) Cancel your edit
aliases: [fawecancel,/fcancel,/cancel,/fawecancel] aliases: [fawecancel,/fcancel,/cancel,/fawecancel]

View File

@ -21,9 +21,6 @@ commands:
select: select:
description: (FAWE) Select your current WorldEdit Region. description: (FAWE) Select your current WorldEdit Region.
aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region] aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region]
frb:
description: (FAWE) Rollback an edit
aliases: [fawerollback,fawerb,/uu,/rb,/frb,/fawerollback,/fawerb]
fcancel: fcancel:
description: (FAWE) Cancel your edit description: (FAWE) Cancel your edit
aliases: [fawecancel,/fcancel,/cancel,/fawecancel] aliases: [fawecancel,/fcancel,/cancel,/fawecancel]

View File

@ -24,9 +24,6 @@ commands:
select: select:
description: (FAWE) Select your current WorldEdit Region. description: (FAWE) Select your current WorldEdit Region.
aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region] aliases: [/select,wer,/wer,worldeditregion,/worldeditregion,/region]
frb:
description: (FAWE) Rollback an edit
aliases: [fawerollback,fawerb,/uu,/rb,/frb,/fawerollback,/fawerb]
fcancel: fcancel:
description: (FAWE) Cancel your edit description: (FAWE) Cancel your edit
aliases: [fawecancel,/fcancel,/cancel,/fawecancel] aliases: [fawecancel,/fcancel,/cancel,/fawecancel]

View File

@ -2,7 +2,6 @@ package com.boydti.fawe;
import com.boydti.fawe.command.Cancel; import com.boydti.fawe.command.Cancel;
import com.boydti.fawe.command.Reload; import com.boydti.fawe.command.Reload;
import com.boydti.fawe.command.Rollback;
import com.boydti.fawe.command.Stream; import com.boydti.fawe.command.Stream;
import com.boydti.fawe.command.Wea; import com.boydti.fawe.command.Wea;
import com.boydti.fawe.command.WorldEditRegion; import com.boydti.fawe.command.WorldEditRegion;
@ -230,7 +229,6 @@ public class Fawe {
this.IMP.setupCommand("stream", new Stream()); this.IMP.setupCommand("stream", new Stream());
this.IMP.setupCommand("select", new WorldEditRegion()); this.IMP.setupCommand("select", new WorldEditRegion());
this.IMP.setupCommand("fawe", new Reload()); this.IMP.setupCommand("fawe", new Reload());
this.IMP.setupCommand("frb", new Rollback());
this.IMP.setupCommand("fcancel", new Cancel()); this.IMP.setupCommand("fcancel", new Cancel());
} }