Details
-
Bug
-
Status: Resolved (View Workflow)
-
Major
-
Resolution: Incomplete
Description
in a groovy view somthing like:
script("""
for(i = 0; i < 10; i++)
""")
will be converted to:
for(i = 0; i < 10; i++)
in a groovy view somthing like:
script("""
for(i = 0; i < 10; i++)
""")
will be converted to:
for(i = 0; i < 10; i++)
the second < should be escaped with (without spaces) & lt ;