comment out main

This commit is contained in:
zzz
2013-12-13 17:29:43 +00:00
parent a7a816e0a7
commit 2bda87d5a7

View File

@ -172,6 +172,7 @@ class NtpClient {
} }
} }
/****/
public static void main(String[] args) throws IOException { public static void main(String[] args) throws IOException {
// Process command-line args // Process command-line args
if(args.length <= 0) { if(args.length <= 0) {
@ -184,11 +185,6 @@ class NtpClient {
System.out.println("Current time: " + new java.util.Date(now)); System.out.println("Current time: " + new java.util.Date(now));
} }
/**
* Prints usage
*/
static void printUsage() { static void printUsage() {
System.out.println( System.out.println(
"NtpClient - an NTP client for Java.\n" + "NtpClient - an NTP client for Java.\n" +
@ -207,4 +203,5 @@ class NtpClient {
"more details."); "more details.");
} }
/****/
} }