Revision: 4064
http://bigdata.svn.sourceforge.net/bigdata/?rev=4064&view=rev
Author: thompsonbry
Date: 2011-01-06 20:52:15 +0000 (Thu, 06 Jan 2011)
Log Message:
-----------
Removed @Override tags.
Modified Paths:
--------------
branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HTableMetadata.java
branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashBucket.java
branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashDirectory.java
Modified: branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HTableMetadata.java
===================================================================
--- branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HTableMetadata.java 2011-01-06 20:51:03 UTC (rev 4063)
+++ branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HTableMetadata.java 2011-01-06 20:52:15 UTC (rev 4064)
@@ -90,14 +90,12 @@
}
- @Override
public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
// TODO Auto-generated method stub
throw new UnsupportedOperationException();
}
- @Override
public void writeExternal(ObjectOutput out) throws IOException {
// TODO Auto-generated method stub
throw new UnsupportedOperationException();
Modified: branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashBucket.java
===================================================================
--- branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashBucket.java 2011-01-06 20:51:03 UTC (rev 4063)
+++ branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashBucket.java 2011-01-06 20:52:15 UTC (rev 4064)
@@ -473,24 +473,20 @@
}
- @Override
public boolean hasNext() {
return current < size;
}
- @Override
public Integer next() {
return entries[current++];
}
- @Override
public void remove() {
throw new UnsupportedOperationException();
}
}
- @Override
public void delete() throws IllegalStateException {
// TODO Auto-generated method stub
throw new UnsupportedOperationException();
Modified: branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashDirectory.java
===================================================================
--- branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashDirectory.java 2011-01-06 20:51:03 UTC (rev 4063)
+++ branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/htree/HashDirectory.java 2011-01-06 20:52:15 UTC (rev 4064)
@@ -513,7 +513,6 @@
}
- @Override
public void delete() throws IllegalStateException {
// TODO Auto-generated method stub
throw new UnsupportedOperationException();
@@ -616,7 +615,6 @@
}
- @Override
public HashBucket next() {
if (!hasNext())
@@ -630,7 +628,6 @@
}
- @Override
public void remove() {
throw new UnsupportedOperationException();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|