From 3124712cfb1b70b54bdb580ce85f5fa9780a4acd Mon Sep 17 00:00:00 2001 From: nossr50 Date: Sat, 11 Feb 2012 12:39:41 -0800 Subject: [PATCH] Formatted a little nicer --- src/main/java/com/gmail/nossr50/mcMMO.java | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/gmail/nossr50/mcMMO.java b/src/main/java/com/gmail/nossr50/mcMMO.java index 1e0fdc1bf..4163ec304 100644 --- a/src/main/java/com/gmail/nossr50/mcMMO.java +++ b/src/main/java/com/gmail/nossr50/mcMMO.java @@ -172,16 +172,16 @@ public class mcMMO extends JavaPlugin //Plugin Metrics running in a new thread new Thread(new Runnable() { - public void run() { - try { - // create a new metrics object - Metrics metrics = new Metrics(); - - // 'this' in this context is the Plugin object - metrics.beginMeasuringPlugin(thisPlugin); - } catch (IOException e) { - // Failed to submit the stats :-( - } + public void run() { + try { + // create a new metrics object + Metrics metrics = new Metrics(); + + // 'this' in this context is the Plugin object + metrics.beginMeasuringPlugin(thisPlugin); + } catch (IOException e) { + // Failed to submit the stats :-( + } } }).start(); }