001 /** 002 * Implements the Cold Fusion Function getk2serverdoccountlimit 003 */ 004 package railo.runtime.functions.other; 005 006 import railo.runtime.PageContext; 007 import railo.runtime.ext.function.Function; 008 import railo.runtime.tag.util.DeprecatedUtil; 009 010 public final class GetK2ServerDocCountLimit implements Function { 011 public static double call(PageContext pc ) { 012 DeprecatedUtil.function(pc,"GetK2ServerDocCountLimit"); 013 return 0; 014 } 015 }