Details
Description
This doesn't work:
/** A String literal that equals to
<code>orderAvailableAmountsRequestDTO</code>.**/
public static String SESSION_STR = "orderAvailableAmountsRequestDTO";
This does:
/** A String literal that equals to
<code>orderAvailableAmountsRequestDTO</code>. **/
public static String SESSION_STR = "orderAvailableAmountsRequestDTO";
(note the space before the comment closes).
Both are valid Java.
Reported by Ville Peurala - vpeurala at mappi.helsinki.fi
Done.