Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2009-03-19 16:51:08 +0000
committerChris Goldthorpe2009-03-19 16:51:08 +0000
commit4734ba6d482f667bbcce7814e58da00137ef819b (patch)
treea68c88554d895559e352628c9876091deac7ddda /org.eclipse.help
parent7cfb6ec1c1a7242aec4865aaca6987be2942043a (diff)
downloadeclipse.platform.ua-4734ba6d482f667bbcce7814e58da00137ef819b.tar.gz
eclipse.platform.ua-4734ba6d482f667bbcce7814e58da00137ef819b.tar.xz
eclipse.platform.ua-4734ba6d482f667bbcce7814e58da00137ef819b.zip
Bug 269380 – Compiler warnings in N20090318-2000
Diffstat (limited to 'org.eclipse.help')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/toc/TocSorter.java12
1 files changed, 1 insertions, 11 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/toc/TocSorter.java b/org.eclipse.help/src/org/eclipse/help/internal/toc/TocSorter.java
index bff3919de..d02c51e10 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/toc/TocSorter.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/toc/TocSorter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 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
@@ -31,7 +31,6 @@ public class TocSorter {
private static class TocCategory extends ArrayList {
private static final long serialVersionUID = 1L;
- private String id;
/**
* Constructs a new empty TOC category with the given id.
@@ -39,17 +38,8 @@ public class TocSorter {
* @param id the category's id
*/
public TocCategory(String id) {
- this.id = id;
}
- /**
- * Returns the category's id.
- *
- * @return the id of the category
- */
- public String getId() {
- return id;
- }
}
/*

Back to the top