-
Type:
Improvement
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Labels:None
{markdown}
This task involves changing code like this:
responseWriter.write(StringPool.APOSTROPHE);
responseWriter.write(StringPool.COMMA);
responseWriter.write(AlloyRenderer.FUNCTION_EVENT);
responseWriter.write(StringPool.OPEN_CURLY_BRACE);
To this:
responseWriter.write("',function(event){");
This will enhance both performance and readability.{markdown}
This task involves changing code like this:
responseWriter.write(StringPool.APOSTROPHE);
responseWriter.write(StringPool.COMMA);
responseWriter.write(AlloyRenderer.FUNCTION_EVENT);
responseWriter.write(StringPool.OPEN_CURLY_BRACE);
To this:
responseWriter.write("',function(event){");
This will enhance both performance and readability.{markdown}
- is related to
-
FACES-2263 Remove constants added to StringPool.java since Liferay Faces GA5 was released
-
- Closed
-