aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlen Stampoultzis <glens@apache.org>2002-04-01 10:39:45 +0000
committerGlen Stampoultzis <glens@apache.org>2002-04-01 10:39:45 +0000
commit78be8ece111bf01ca3864cb98d1cd25c7349ddcd (patch)
treece84876886d01687f7bd6af124584b805c2cada4 /src
parentd620910dee7fdf0e2f165877e5901fa6736f8dea (diff)
downloadpoi-78be8ece111bf01ca3864cb98d1cd25c7349ddcd.tar.gz
poi-78be8ece111bf01ca3864cb98d1cd25c7349ddcd.zip
Cleaned up a few minor things.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352304 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/poi/util/BinaryTree.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/java/org/apache/poi/util/BinaryTree.java b/src/java/org/apache/poi/util/BinaryTree.java
index 3b2356eb5e..c1334dc5ea 100644
--- a/src/java/org/apache/poi/util/BinaryTree.java
+++ b/src/java/org/apache/poi/util/BinaryTree.java
@@ -55,8 +55,6 @@
package org.apache.poi.util;
-import java.lang.reflect.Array;
-
import java.util.*;
/**
@@ -127,9 +125,8 @@ import java.util.*;
*
* @author Marc Johnson (mjohnson at apache dot org)
*/
+public final class BinaryTree // final for performance
-// final for performance
-public final class BinaryTree
extends AbstractMap
{
private Node[] _root = new Node[]
@@ -1059,7 +1056,7 @@ public final class BinaryTree
* rebalances the tree (somewhat, as red-black trees are not
* perfectly balanced -- perfect balancing takes longer)
*
- * @param deleted_node the node being replaced
+ * @param replacement_node the node being replaced
* @param index _KEY or _VALUE
*/