diff options
author | Chris Goldthorpe | 2009-03-19 17:14:13 +0000 |
---|---|---|
committer | Chris Goldthorpe | 2009-03-19 17:14:13 +0000 |
commit | 7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db (patch) | |
tree | 72a7d20f454f46d5a6a2ad9467bdcf2220f5628e /org.eclipse.ui.intro | |
parent | 32a1cab6a9d031248ba38d6a871c265722306de4 (diff) | |
download | eclipse.platform.ua-7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db.tar.gz eclipse.platform.ua-7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db.tar.xz eclipse.platform.ua-7bbc54c9a9a226d8229ef46ef2cfef4faddfe5db.zip |
Bug 269386 Compiler warnings in N20090318-2000
Diffstat (limited to 'org.eclipse.ui.intro')
-rw-r--r-- | org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IntroHTMLGenerator.java | 8 |
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(); |