Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
This is a small enhancement suggested by Blake Sullivan.
Blake suggested that we shorten the hashcode that we put into the generated css filename by using radix 36 instead of the default.
So in StyleSheetDocument, change:
String.valueOf(Math.abs(hashCode));
to
Integer.toString(Math.abs(hashCode), 36);
This will shorten the generated css filename.