OSDN Git Service

Remove Id tag
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / utils / NullIterator.java
old mode 100755 (executable)
new mode 100644 (file)
index 0672f68..093a473
@@ -1,26 +1,24 @@
 package jp.sourceforge.stigmata.utils;
 
-/*
- * $Id$
- */
-
 import java.util.Iterator;
 import java.util.NoSuchElementException;
 
 /**
  * 
  * @author Haruaki Tamada 
- * @version $Revision$ $Date$
  */
 public class NullIterator<T> implements Iterator<T>{
+    @Override
     public boolean hasNext(){
         return false;
     }
 
+    @Override
     public T next(){
         throw new NoSuchElementException("no more object");
     }
 
+    @Override
     public void remove(){
     }
 }