Skip to content

Instantly share code, notes, and snippets.

@jkschoen
Created August 15, 2012 03:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkschoen/3355609 to your computer and use it in GitHub Desktop.
Save jkschoen/3355609 to your computer and use it in GitHub Desktop.
Just a bad example...
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