finished core

This commit is contained in:
dev
2008-11-09 10:09:01 +00:00
parent 7bf57870d6
commit c9d9a83f73
29 changed files with 155 additions and 15 deletions

View File

@@ -328,6 +328,7 @@ public class NtpMessage {
/**
* Returns a string representation of a NtpMessage
*/
@Override
public String toString() {
String precisionStr = new DecimalFormat("0.#E0").format(Math.pow(2, precision));

View File

@@ -110,6 +110,7 @@ public class Timestamper implements Runnable {
} catch (InterruptedException ie) {}
}
@Override
public void run() {
try { Thread.sleep(1000); } catch (InterruptedException ie) {}
_log = _context.logManager().getLog(Timestamper.class);