summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
diff options
context:
space:
mode:
authorementalo <ementalodev@gmx.co.uk>2013-02-28 21:02:37 +0000
committerementalo <ementalodev@gmx.co.uk>2013-02-28 21:02:37 +0000
commit8d77a3f941606f01b8aa63651a28fd3a127360ed (patch)
tree1d4a394b2f60f5760b12aa03872aa7a0b39f8811 /EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
parent58b1b34e4442f342af34b10876e7e7097499b15b (diff)
downloadEssentials-8d77a3f941606f01b8aa63651a28fd3a127360ed.tar
Essentials-8d77a3f941606f01b8aa63651a28fd3a127360ed.tar.gz
Essentials-8d77a3f941606f01b8aa63651a28fd3a127360ed.tar.lz
Essentials-8d77a3f941606f01b8aa63651a28fd3a127360ed.tar.xz
Essentials-8d77a3f941606f01b8aa63651a28fd3a127360ed.zip
[Breaking] Remove protect database functionality for protecting signs and rails.
- Removed config entries - Removed c3p0 lib
Diffstat (limited to 'EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java')
-rw-r--r--EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java b/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
deleted file mode 100644
index dc28feae8..000000000
--- a/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.earth2me.essentials.protect.data;
-
-
-public class OwnedBlock
-{
- final int x;
- final int y;
- final int z;
- final String world;
- final String playerName;
-
- public OwnedBlock(int x, int y, int z, String world, String playerName)
- {
- this.x = x;
- this.y = y;
- this.z = z;
- this.world = world;
- this.playerName = playerName;
- }
-}