Created
January 22, 2014 23:42
Revisions
-
andrewpthorp renamed this gist
Jan 22, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ private static String className(Class<?> clazz) { String className = clazz.getSimpleName().toLowerCase().replace("$", " "); // TODO: Delurk this, with invoiceitem being a valid url, we can't get too @@ -8,4 +8,4 @@ private static String className(Class<?> clazz) { } else { return className; } } -
andrewpthorp created this gist
Jan 22, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ private static String className(Class<?> clazz) { String className = clazz.getSimpleName().toLowerCase().replace("$", " "); // TODO: Delurk this, with invoiceitem being a valid url, we can't get too // fancy yet. if (className.equals("applicationfee")) { return "application_fee"; } else { return className; } }