125126127128129130131132133134135
public String getWelcome() { ClassLoader previous = setCRaSHLoader(); try { Compiler groovy = crash.scriptResolver.getCompiler("groovy"); if (groovy != null) { return groovy.doCallBack(this, "welcome", ""); } else { return ""; } } finally {
140141142143144145146147148149150
public String getPrompt() { ClassLoader previous = setCRaSHLoader(); try { Compiler groovy = crash.scriptResolver.getCompiler("groovy"); if (groovy != null) { return groovy.doCallBack(this, "prompt", "% "); } else { return "% "; } } finally {