001 /** 002 * Implements the Cold Fusion Function NullValue 003 */ 004 package railo.runtime.functions.other; 005 006 import railo.runtime.PageContext; 007 import railo.runtime.ext.function.Function; 008 009 public final class NullValue implements Function { 010 011 public synchronized static Object call(PageContext pc) { 012 return null; 013 } 014 015 016 }