001 /** 002 * Implements the Cold Fusion Function preservesinglequotes 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 PreserveSingleQuotes implements Function { 010 public static String call(PageContext pc , String string) { 011 //print.ln("PreserveSingleQuotes:"+string); 012 return string; 013 } 014 }