Added comment to document this "weird casting technique"

This commit is contained in:
Lukas Eder 2013-02-11 17:17:10 +01:00
parent e732efcbdc
commit ee5b589361

View File

@ -6672,6 +6672,8 @@ public class Factory {
*/
@Support
public static Param<String> inline(CharSequence character) {
// Delegate to inline(T)
return (Param) inline((Object) ((character == null) ? null : ("" + character)));
}