A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.xml.ui / src / net / sourceforge / phpeclipse / xml / ui / internal / text / XMLAnnotationIterator.java
index 838bd66..b86dea6 100644 (file)
@@ -8,7 +8,7 @@
  * Contributors:
  *     Igor Malinin - initial contribution
  *
- * $Id: XMLAnnotationIterator.java,v 1.1 2004-09-02 18:28:03 jsurfer Exp $
+ * $Id: XMLAnnotationIterator.java,v 1.2 2006-10-21 23:14:13 pombredanne Exp $
  */
 package net.sourceforge.phpeclipse.xml.ui.internal.text;
 
@@ -17,7 +17,6 @@ import java.util.Iterator;
 import org.eclipse.jface.text.source.Annotation;
 import org.eclipse.jface.text.source.IAnnotationModel;
 
-
 /**
  * @author Igor Malinin
  */
@@ -25,11 +24,10 @@ public class XMLAnnotationIterator implements Iterator {
        private boolean skipIrrelevants;
 
        private Iterator iterator;
+
        private Annotation next;
 
-       public XMLAnnotationIterator(
-               IAnnotationModel model, boolean skipIrrelevants
-       ) {
+       public XMLAnnotationIterator(IAnnotationModel model, boolean skipIrrelevants) {
                this.skipIrrelevants = skipIrrelevants;
 
                iterator = model.getAnnotationIterator();