From 270a3f6e22782278a5254c4c073cad2ad8b6ccf8 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 28 Aug 2014 20:31:35 +0400 Subject: java-decompiler: post-import cleanup (unneeded files dropped) --- timer/com/vladium/utils/timing/TimerFactory.java | 74 ------------------------ 1 file changed, 74 deletions(-) delete mode 100644 timer/com/vladium/utils/timing/TimerFactory.java (limited to 'timer/com/vladium/utils/timing/TimerFactory.java') diff --git a/timer/com/vladium/utils/timing/TimerFactory.java b/timer/com/vladium/utils/timing/TimerFactory.java deleted file mode 100644 index ae127c5..0000000 --- a/timer/com/vladium/utils/timing/TimerFactory.java +++ /dev/null @@ -1,74 +0,0 @@ - -package com.vladium.utils.timing; - -// ---------------------------------------------------------------------------- -/** - * This non-instantiable non-extendible class acts as a Factory for {@link ITimer} - * implementations. - * - * @author (C) Vlad Roubtsov, 2002 - */ -public abstract class TimerFactory -{ - // public: ................................................................ - - private static final String HRTIMER_LIB = "hrtlib"; - - /** - * Creates a new instance of {@link ITimer} which is returned in 'ready' - * state. If the JNI-based/high-resolution implementation is not available - * this will return an instance of JavaSystemTimer, so this - * method is guaranteed not to fail. - * - * @return ITimer a new timer instance in 'ready' state [never null] */ - - public static void initialize(String path) { - - UnsatisfiedLinkError exception = null; - - try { - System.loadLibrary (HRTIMER_LIB); - } catch (UnsatisfiedLinkError e) { - if(path != null) { - try { - System.load(path); - } catch (UnsatisfiedLinkError ex) { - exception = ex; - } - } else { - exception = e; - } - } - - if(exception != null) { - System.out.println ("native lib '" + HRTIMER_LIB - + "' not found in 'java.library.path': " - + System.getProperty ("java.library.path") - +path==null?"":(" or in "+path)); - - throw exception; // re-throw - } - } - - public static ITimer newTimer () - { -// try -// { - return new HRTimer (); -// } -// catch (Throwable t) -// { -// return new JavaSystemTimer (); -// } - } - - // protected: ............................................................. - - // package: ............................................................... - - // private: ............................................................... - - private TimerFactory () {} // prevent subclassing - -} // end of class -// ---------------------------------------------------------------------------- -- cgit v1.2.3