Restore null check

This commit is contained in:
Ben Hamilton 2017-01-24 11:38:34 -08:00
parent bbf8476c8e
commit 3b25e076fc
1 changed files with 1 additions and 0 deletions

View File

@ -136,6 +136,7 @@ public class Utils {
}
public static char[] toCharArray(IntegerList data) {
if ( data==null ) return null;
return data.toCharArray();
}