Skip to content

Instantly share code, notes, and snippets.

@deskid
Created April 15, 2016 08:12
Show Gist options
  • Save deskid/cec7524330d555e6973220ded76bcb3f to your computer and use it in GitHub Desktop.
Save deskid/cec7524330d555e6973220ded76bcb3f to your computer and use it in GitHub Desktop.
public class Test {
public static final Map<String,String> sData = new TreeMap<>();
static {
sData.put("a","A");
}
public static final Map<String,String> sData2 = new TreeMap<String,String>(){
{
this.put("a","A");
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment