Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2009-03-19 17:14:13 +0000
committerChris Goldthorpe2009-03-19 17:14:13 +0000
commit7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db (patch)
tree72a7d20f454f46d5a6a2ad9467bdcf2220f5628e
parent32a1cab6a9d031248ba38d6a871c265722306de4 (diff)
downloadeclipse.platform.ua-7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db.tar.gz
eclipse.platform.ua-7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db.tar.xz
eclipse.platform.ua-7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db.zip
Bug 269386 – Compiler warnings in N20090318-2000
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IntroHTMLGenerator.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IntroHTMLGenerator.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IntroHTMLGenerator.java
index 958d57d9b..d9a1e6cff 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IntroHTMLGenerator.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IntroHTMLGenerator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2008 IBM Corporation and others.
+ * Copyright (c) 2004, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -1146,12 +1146,6 @@ public class IntroHTMLGenerator {
// and the closing "$" token
private StringBuffer pluginId;
- protected PluginIdParser(char tokenBegin, BufferedReader bufferedreader) {
- reader = bufferedreader;
- tokenContent = new StringBuffer(tokenBegin);
- pluginId = new StringBuffer();
- }
-
protected PluginIdParser(int tokenBegin, BufferedReader bufferedreader) {
reader = bufferedreader;
tokenContent = new StringBuffer();

Back to the top