Restore null check
This commit is contained in:
parent
bbf8476c8e
commit
3b25e076fc
|
@ -136,6 +136,7 @@ public class Utils {
|
|||
}
|
||||
|
||||
public static char[] toCharArray(IntegerList data) {
|
||||
if ( data==null ) return null;
|
||||
return data.toCharArray();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue