From 60a49f4e1a28d2e7e4339b7f38e7b15e4a4f3111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 1 Jun 2014 19:37:13 +0200 Subject: [PATCH] Issue #537 IllegalOperationError package fix --- src/com/jpexs/helpers/Helper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/jpexs/helpers/Helper.java b/src/com/jpexs/helpers/Helper.java index d0546c73a..e3d850615 100644 --- a/src/com/jpexs/helpers/Helper.java +++ b/src/com/jpexs/helpers/Helper.java @@ -795,7 +795,7 @@ public class Helper { writer.appendNoHilight(" * ").appendNoHilight(AppStrings.translate("decompilationError")).newLine(); writer.appendNoHilight(" * ").appendNoHilight(MessageFormat.format(AppStrings.translate("decompilationError.timeout"), Helper.formatTimeToText(timeout))).newLine(); writer.appendNoHilight(" */").newLine(); - writer.appendNoHilight("throw new IllegalOperationError(\""). + writer.appendNoHilight("throw new flash.errors.IllegalOperationError(\""). appendNoHilight(AppStrings.translate("decompilationError.timeout.description")). appendNoHilight("\");").newLine(); } @@ -807,7 +807,7 @@ public class Helper { writer.appendNoHilight(" * ").appendNoHilight(AppStrings.translate("decompilationError.errorType")). appendNoHilight(": " + ex.getClass().getSimpleName()).newLine(); writer.appendNoHilight(" */").newLine(); - writer.appendNoHilight("throw new IllegalOperationError(\""). + writer.appendNoHilight("throw new flash.errors.IllegalOperationError(\""). appendNoHilight(AppStrings.translate("decompilationError.error.description")). appendNoHilight("\");").newLine(); }