Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-gui / src / main / java / org / onap / aaf / auth / gui / table / TextAndRefCell.java
index 036c8b7..aefb3a4 100644 (file)
@@ -27,17 +27,17 @@ import org.onap.aaf.misc.xgen.html.HTMLGen;
 
 public class TextAndRefCell extends RefCell {
 
-       private String text;
-               
-       public TextAndRefCell(String text, String name, String href, boolean newWindow, String[] attributes) {
-               super(name, href, newWindow, attributes);
-               this.text = text;
-       }
+    private String text;
+        
+    public TextAndRefCell(String text, String name, String href, boolean newWindow, String[] attributes) {
+        super(name, href, newWindow, attributes);
+        this.text = text;
+    }
 
-       @Override
-       public void write(HTMLGen hgen) {
-               hgen.text(text);
-               hgen.leaf(A,str).text(name);
-       }
+    @Override
+    public void write(HTMLGen hgen) {
+        hgen.text(text);
+        hgen.leaf(A,str).text(name);
+    }
 
 }