summaryrefslogtreecommitdiff
path: root/sources/scalac/Global.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/Global.java')
-rw-r--r--sources/scalac/Global.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/sources/scalac/Global.java b/sources/scalac/Global.java
index a5f82f3979..eb41e5f3e5 100644
--- a/sources/scalac/Global.java
+++ b/sources/scalac/Global.java
@@ -626,42 +626,6 @@ public abstract class Global {
// !!! >>> Interpreter stuff
- /** stop the compilation process immediately
- */
- public static Error fail() {
- throw new ApplicationError();
- }
-
- /** stop the compilation process immediately
- */
- public static Error fail(String message) {
- throw new ApplicationError(message);
- }
-
- /** stop the compilation process immediately
- */
- public static Error fail(String message, Object object) {
- throw new ApplicationError(message, object);
- }
-
- /** stop the compilation process immediately
- */
- public static Error fail(Object value) {
- throw new ApplicationError(value);
- }
-
- /** stop the compilation process immediately
- */
- public static Error fail(String message, Throwable cause) {
- throw new ApplicationError(message, cause);
- }
-
- /** stop the compilation process immediately
- */
- public static Error fail(Throwable cause) {
- throw new ApplicationError(cause);
- }
-
/** issue a global error
*/
public void error(String message) {