Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java
index 69a0e8908..3b5ed5ddd 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java
@@ -269,8 +269,8 @@ public abstract class PageSaveablePart extends SaveablePartAdapter implements IC
try {
// TODO: we need a better progress story here (i.e. support for cancellation) bug 127075
manager.busyCursorWhile(monitor -> {
- prepareInput(input, getCompareConfiguration(), monitor);
- hookContentChangeListener(input);
+ prepareInput(input, getCompareConfiguration(), monitor);
+ hookContentChangeListener(input);
});
} catch (InvocationTargetException e) {
Utils.handle(e);
@@ -372,12 +372,12 @@ public abstract class PageSaveablePart extends SaveablePartAdapter implements IC
return null;
}
- /**
- * Set whether the file contents panes should be shown. If they are not,
- * only the page will be shown.
- *
- * @param showContentPanes whether to show contents pane
- */
+ /**
+ * Set whether the file contents panes should be shown. If they are not,
+ * only the page will be shown.
+ *
+ * @param showContentPanes whether to show contents pane
+ */
public void setShowContentPanes(boolean showContentPanes) {
this.showContentPanes = showContentPanes;
}

Back to the top