Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-02-24 17:51:06 +0000
committerFrank Becker2012-02-24 17:51:06 +0000
commita4fab89dad56a8dd6f39c1af2d6e0aedf590e2dd (patch)
tree88da3efd81530f53a85e84bc4c28d6dbcd3edd8e
parent9ea9b42eb42dcd99a8038f51b2596f0266f8f0e0 (diff)
downloadorg.eclipse.mylyn.tasks-a4fab89dad56a8dd6f39c1af2d6e0aedf590e2dd.tar.gz
org.eclipse.mylyn.tasks-a4fab89dad56a8dd6f39c1af2d6e0aedf590e2dd.tar.xz
org.eclipse.mylyn.tasks-a4fab89dad56a8dd6f39c1af2d6e0aedf590e2dd.zip
ASSIGNED - bug 372384: [regression] submitting very long comment fails
without error https://bugs.eclipse.org/bugs/show_bug.cgi?id=372384
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java
index 7bb256f27..90a33a433 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java
@@ -552,10 +552,10 @@ public class BugzillaTaskEditorPage extends AbstractTaskEditorPage {
case BugzillaStatus.ERROR_CONFIRM_MATCH:
case BugzillaStatus.ERROR_MATCH_FAILED:
showError((BugzillaStatus) event.getJob().getStatus());
- break;
+ return;
}
- } else if (event.getJob().getResponse() != null
- && event.getJob().getResponse() instanceof BugzillaRepositoryResponse) {
+ }
+ if (event.getJob().getResponse() != null && event.getJob().getResponse() instanceof BugzillaRepositoryResponse) {
final RepositoryResponse response = event.getJob().getResponse();
if (response instanceof BugzillaRepositoryResponse) {
final BugzillaRepositoryResponse bugzillaResponse = (BugzillaRepositoryResponse) response;

Back to the top