NullPointerException when calling GlideRecord.get(column_name, value)Issue GlideRecord API throws a NullPointerException when a null value is passed as the 2nd param to get(column_name, value) function. Example:var gr = new GlideRecord('incident');gs.info(gr.get('number', null)); Result:Evaluator: java.lang.NullPointerException Caused by error in script at line 2 1: var gr = new GlideRecord('incident');==> 2: gs.info(gr.get('number', null));ReleaseAllResolutionAdd a null check in the script before calling the GlideRecord.get() function so it does not result in a NullPointerException.