浏览代码

Formatted a little nicer

nossr50 13 年之前
父节点
当前提交
3124712cfb
共有 1 个文件被更改,包括 10 次插入10 次删除
  1. 10 10
      src/main/java/com/gmail/nossr50/mcMMO.java

+ 10 - 10
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();
 	}