diff --git a/core/java/src/net/i2p/util/SimpleTimer2.java b/core/java/src/net/i2p/util/SimpleTimer2.java
index d5ae40e56c934212858a75570f59766b86b19ba3..497eed6d4163df3bc6edfd3bcb297e0e6918e91c 100644
--- a/core/java/src/net/i2p/util/SimpleTimer2.java
+++ b/core/java/src/net/i2p/util/SimpleTimer2.java
@@ -136,11 +136,11 @@ public class SimpleTimer2 {
             throw new IllegalArgumentException("addEvent null");
 
         new TimedEvent(SimpleTimer2.getInstance(), timeoutMs) {
-			@Override
-			public void timeReached() {
-				event.timeReached();
-			}
-    	};
+            @Override
+            public void timeReached() {
+                event.timeReached();
+            }
+        };
     }
     
     /**
@@ -155,14 +155,14 @@ public class SimpleTimer2 {
      * @param timeoutMs run subsequent iterations of this event every timeoutMs ms
      */
     public void addPeriodicEvent(final SimpleTimer.TimedEvent event, final long timeoutMs) {
-    	
+        
         new PeriodicTimedEvent(SimpleTimer2.getInstance(), timeoutMs) {
-			@Override
-			public void timeReached() {
-				event.timeReached();
-			}
-    	};
-	}
+            @Override
+            public void timeReached() {
+                event.timeReached();
+            }
+        };
+    }
     
     /**
      * Schedule periodic event
@@ -175,15 +175,15 @@ public class SimpleTimer2 {
      * @param delay run the first iteration of this event after delay ms
      * @param timeoutMs run subsequent iterations of this event every timeoutMs ms
      */
-	public void addPeriodicEvent(final SimpleTimer.TimedEvent event, final long delay,  final long timeoutMs) {
-		
+    public void addPeriodicEvent(final SimpleTimer.TimedEvent event, final long delay,  final long timeoutMs) {
+        
         new PeriodicTimedEvent(SimpleTimer2.getInstance(), delay, timeoutMs) {
-			@Override
-			public void timeReached() {
-				event.timeReached();
-			}
-    	};		
-	}
+            @Override
+            public void timeReached() {
+                event.timeReached();
+            }
+        };        
+    }
 
     /** 
      * state of a given TimedEvent
@@ -465,14 +465,14 @@ public class SimpleTimer2 {
     }
     
     public static abstract class PeriodicTimedEvent extends TimedEvent {
-    	private long _timeoutMs;
+        private long _timeoutMs;
         
         /**
          * Schedule periodic event
          * 
          * @param timeoutMs run subsequent iterations of this event every timeoutMs ms
          */
-    	public PeriodicTimedEvent(SimpleTimer2 pool, long timeoutMs) {
+        public PeriodicTimedEvent(SimpleTimer2 pool, long timeoutMs) {
             super(pool, timeoutMs);
             _timeoutMs = timeoutMs;
         }
@@ -490,8 +490,8 @@ public class SimpleTimer2 {
         
         @Override
         public void run() {
-        	super.run();
-        	schedule(_timeoutMs);
+            super.run();
+            schedule(_timeoutMs);
         }
     }
 }