Forgot to do another null check

This commit is contained in:
libraryaddict 2017-07-25 10:41:07 +12:00
parent 2c7a6e2b43
commit 0f45734f85

View File

@ -889,6 +889,9 @@ public class ReflectionManager {
public static WrappedWatchableObject createWatchable(int index, Object obj) {
Object watcherItem = createDataWatcherItem(index, obj);
if (watcherItem == null)
return null;
return new WrappedWatchableObject(watcherItem);
}