Created
August 15, 2012 03:46
-
-
Save jkschoen/3355609 to your computer and use it in GitHub Desktop.
Just a bad example...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
public class Test { | |
static Test cursor = loadCursor(); | |
static Date date = new Date(); | |
static DateFormat form = new SimpleDateFormat("HH:mm:ss"); | |
static Test loadCursor() { | |
System.out.println(form.format(date)); | |
return null; | |
} | |
public static void main(String[] args) { | |
System.out.println("Hello"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment