From 87780f0a7857576cb4803c2265790ca754664b10 Mon Sep 17 00:00:00 2001 From: sk89q Date: Mon, 4 Oct 2010 22:44:55 -0700 Subject: [PATCH] etc.getDataSource() is now static; updated. --- src/WorldEdit.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WorldEdit.java b/src/WorldEdit.java index 03de7bbea..75b81198f 100644 --- a/src/WorldEdit.java +++ b/src/WorldEdit.java @@ -105,7 +105,7 @@ public class WorldEdit extends Plugin { foundID = Integer.parseInt(id); } catch (NumberFormatException e) { try { - foundID = etc.getInstance().getDataSource().getItem(id); + foundID = etc.getDataSource().getItem(id); } catch (NumberFormatException e2) { throw new UnknownItemException(); }