- Code: Select all - convertNull(global_variable, newList("default", "values"));
- Code: Select all - if (global_variable == null) { global_variable = false; }

Moderator: Martin
Code: Select all
convertNull(global_variable, newList("default", "values"));Code: Select all
if (global_variable == null) { global_variable = false; }
 Just kidding
  Just kidding 
Code: Select all
if(global_variable == null)
  global_variable = false;