You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2015/04/14 14:02:07 UTC

[3/3] [math] Removed spurious (for Java 5) @Override.

Removed spurious (for Java 5) @Override.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/b3c5dae8
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/b3c5dae8
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/b3c5dae8

Branch: refs/heads/release
Commit: b3c5dae8f253fcb4484e5cd3cc5662587803efc2
Parents: 6e24e58
Author: Luc Maisonobe <lu...@apache.org>
Authored: Tue Apr 14 13:56:59 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Tue Apr 14 13:56:59 2015 +0200

----------------------------------------------------------------------
 .../apache/commons/math3/geometry/partitioning/RegionDumper.java  | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/b3c5dae8/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java b/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
index 33be9d7..fae3fd8 100644
--- a/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
+++ b/src/test/java/org/apache/commons/math3/geometry/partitioning/RegionDumper.java
@@ -204,13 +204,11 @@ public class RegionDumper {
         protected abstract void formatHyperplane(Hyperplane<S> hyperplane);
 
         /** {@inheritDoc} */
-        @Override
         public Order visitOrder(final BSPTree<S> node) {
             return Order.SUB_MINUS_PLUS;
         }
 
         /** {@inheritDoc} */
-        @Override
         public void visitInternalNode(final BSPTree<S> node) {
             formatter.format("%s %s internal ", prefix, type(node));
             formatHyperplane(node.getCut().getHyperplane());
@@ -219,7 +217,6 @@ public class RegionDumper {
         }
 
         /** {@inheritDoc} */
-        @Override
         public void visitLeafNode(final BSPTree<S> node) {
             formatter.format("%s %s leaf %s%n",
                              prefix, type(node), node.getAttribute());