Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2019-07-09 05:22:34 +0000
committerMichael Keppler2019-08-15 12:21:58 +0000
commit49134410668238184bbdfc5c5b732c18894a9f49 (patch)
tree701f65a15102cfa00be5802fe74cb2a7459a02b6 /org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal
parentdbd7838aba2f54b28d4d5601f994e70cc2ddab2d (diff)
downloadegit-49134410668238184bbdfc5c5b732c18894a9f49.tar.gz
egit-49134410668238184bbdfc5c5b732c18894a9f49.tar.xz
egit-49134410668238184bbdfc5c5b732c18894a9f49.zip
Log exception in create branch wizard
Since we currently can only guess what causes the linked bug, we should log the exception that causes the remote to be empty in the wizard. Bug:548996 Change-Id: I868fd98772c275698e1ea29bb8522f8347554926 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/CreateBranchWizard.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/CreateBranchWizard.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/CreateBranchWizard.java
index 26dad5da08..786db8c1c3 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/CreateBranchWizard.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/CreateBranchWizard.java
@@ -72,6 +72,7 @@ public class CreateBranchWizard extends Wizard {
}
}
} catch (IOException e) {
+ Activator.handleError(e.getMessage(), e, false);
// simply don't select the drop down
myPage = new CreateBranchPage(repository, (Ref) null);
}

Back to the top