Here you can find the source of useMemoryLimitOver()
public static void useMemoryLimitOver()
//package com.java2s; /**/*from w w w .j av a 2s .c o m*/ * ?????????????????????????.<br> * * @author T.Okuyama * @license GPL(Lv3) */ public class Main { private static boolean memoryLimitOver = false; public static void useMemoryLimitOver() { memoryLimitOver = true; } }