Code formating and whitespace cleanup
[jpim.git] / src / de / j32 / pimstuff / data / Attribute.java
index 3889ebb..7153973 100644 (file)
@@ -2,16 +2,16 @@ package de.j32.pimstuff.data;
 
 public class Attribute
 {
-       public String type;
-       public String rel;
-       public String value;
-       public int index;
-       
-       public Attribute(String type_, String rel_, String value_, int index_)
-       {
-               type = type_;
-               rel = rel_;
-               value = value_;
-               index = index_;
-       }
+    public String type;
+    public String rel;
+    public String value;
+    public int index;
+
+    public Attribute(String type_, String rel_, String value_, int index_)
+    {
+        type = type_;
+        rel = rel_;
+        value = value_;
+        index = index_;
+    }
 }