Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2016-04-12 17:48:16 +0000
committerLars Vogel2016-04-12 17:48:36 +0000
commit790652f8bd1c247f29872621ca43f5b825104677 (patch)
treedf0dccf866f7453fad56c7a49169fb151fb11509 /bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java
parente3b27690981c05c355fb29a3f213d6028dda3290 (diff)
downloadeclipse.platform.team-790652f8bd1c247f29872621ca43f5b825104677.tar.gz
eclipse.platform.team-790652f8bd1c247f29872621ca43f5b825104677.tar.xz
eclipse.platform.team-790652f8bd1c247f29872621ca43f5b825104677.zip
Bug 491533 - Run remove unnecessary whitespace cleanup onY20160414-1000I20160417-1112
org.eclipse.team.ui Change-Id: I422dc120f97d04250967609c7d423377ec11bf01 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java
index 43b3a33db..9d8571c92 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractViewerAdvisor.java
@@ -22,7 +22,7 @@ public abstract class AbstractViewerAdvisor {
private ISynchronizePageConfiguration configuration;
private StructuredViewer viewer;
-
+
public AbstractViewerAdvisor(ISynchronizePageConfiguration configuration) {
this.configuration = configuration;
configuration.setProperty(SynchronizePageConfiguration.P_ADVISOR, this);
@@ -35,7 +35,7 @@ public abstract class AbstractViewerAdvisor {
/**
* Install a viewer to be configured with this advisor. An advisor can only be installed with
* one viewer at a time. When this method completes the viewer is considered initialized and
- * can be shown to the user.
+ * can be shown to the user.
* @param viewer the viewer being installed
*/
protected void initializeViewer(final StructuredViewer viewer) {
@@ -43,11 +43,11 @@ public abstract class AbstractViewerAdvisor {
Assert.isTrue(validateViewer(viewer));
this.viewer = viewer;
}
-
+
/**
* Subclasses can validate that the viewer being initialized with this advisor
* is of the correct type.
- *
+ *
* @param viewer the viewer to validate
* @return <code>true</code> if the viewer is valid, <code>false</code> otherwise.
*/
@@ -57,7 +57,7 @@ public abstract class AbstractViewerAdvisor {
/**
* Returns the viewer configured by this advisor.
- *
+ *
* @return the viewer configured by this advisor.
*/
public StructuredViewer getViewer() {

Back to the top