From ebfaf480f4dcaacb795c937c2c27ed8257a3a640 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 5 Jul 2006 19:50:05 +0000 Subject: [PATCH] No, retroweaver won't catch this. Reverted to the 1.4-compatible constructor. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1869 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/Interval.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/util/Interval.java b/src/java/com/samskivert/util/Interval.java index 8801ebe3..05d151b5 100644 --- a/src/java/com/samskivert/util/Interval.java +++ b/src/java/com/samskivert/util/Interval.java @@ -195,5 +195,5 @@ public abstract class Interval /** The daemon timer used to schedule all Intervals. */ protected static final Timer _timer = - new Timer("samskivert Interval Timer", true); + new Timer(/*JDK1.5 "samskivert Interval Timer",*/ true); }