From 0a15dae2a46cb6cb94cacdf2c0a64b35d91a0b5b Mon Sep 17 00:00:00 2001 From: Olof Larsson Date: Thu, 20 Dec 2012 13:05:48 +0100 Subject: [PATCH] some indent and a version bump --- plugin.yml | 2 +- .../mcore5/store/ModificationState.java | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/plugin.yml b/plugin.yml index 25b3e5d7..0e3d8497 100644 --- a/plugin.yml +++ b/plugin.yml @@ -1,5 +1,5 @@ name: mcore5 -version: 1.1.1 +version: 1.1.2 main: com.massivecraft.mcore5.MCore load: startup permissions: diff --git a/src/com/massivecraft/mcore5/store/ModificationState.java b/src/com/massivecraft/mcore5/store/ModificationState.java index 5a50883f..4f5d6643 100644 --- a/src/com/massivecraft/mcore5/store/ModificationState.java +++ b/src/com/massivecraft/mcore5/store/ModificationState.java @@ -2,14 +2,14 @@ package com.massivecraft.mcore5.store; public enum ModificationState { - LOCAL_ALTER (true, true), - LOCAL_ATTACH (true, true), - LOCAL_DETACH (true, true), - REMOTE_ALTER (true, false), - REMOTE_ATTACH (true, false), - REMOTE_DETACH (true, false), - NONE (false, false), - UNKNOWN (false, false), + LOCAL_ALTER (true, true), + LOCAL_ATTACH (true, true), + LOCAL_DETACH (true, true), + REMOTE_ALTER (true, false), + REMOTE_ATTACH (true, false), + REMOTE_DETACH (true, false), + NONE (false, false), + UNKNOWN (false, false), ; private final boolean modified;