Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-10-30 20:49:35 +0000
committerMichael Valenta2003-10-30 20:49:35 +0000
commitee09e7514270876a92f382242bfa9b8240423531 (patch)
tree6372c844100816a0b3c085e0f016c5f895658de3
parentc7e5a81827151e023469fe7aa6ef1b795e228281 (diff)
downloadeclipse.platform.team-ee09e7514270876a92f382242bfa9b8240423531.tar.gz
eclipse.platform.team-ee09e7514270876a92f382242bfa9b8240423531.tar.xz
eclipse.platform.team-ee09e7514270876a92f382242bfa9b8240423531.zip
Fixed null prefix or suffix bug
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/sync/CVSCatchupReleaseViewer.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/sync/CVSCatchupReleaseViewer.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/sync/CVSCatchupReleaseViewer.java
index 9c9f941f2..2b05f4192 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/sync/CVSCatchupReleaseViewer.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/sync/CVSCatchupReleaseViewer.java
@@ -196,7 +196,8 @@ public class CVSCatchupReleaseViewer extends CatchupReleaseViewer {
}
private static class Decoration implements IDecoration {
- public String prefix, suffix;
+ public String prefix = ""; //$NON-NLS-1$
+ public String suffix = ""; //$NON-NLS-1$
public ImageDescriptor overlay;
/**

Back to the top