]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/util/DNSUtil.java
upd: whitespace changes (formatting)
[gigi.git] / src / org / cacert / gigi / util / DNSUtil.java
index f1d5f9f3a86f9415aed483486ae857c5764c9dc2..31fb1d6e2e88e00cc855e554cf520f748142cd4f 100644 (file)
@@ -25,7 +25,7 @@ public class DNSUtil {
 
     public static String[] getNSNames(String name) throws NamingException {
         Attributes dnsLookup = context.getAttributes(name, new String[] {
-            "NS"
+                "NS"
         });
         return extractTextEntries(dnsLookup.get("NS"));
     }
@@ -39,7 +39,7 @@ public class DNSUtil {
         try {
 
             Attributes dnsLookup = context.getAttributes(name, new String[] {
-                "TXT"
+                    "TXT"
             });
             return extractTextEntries(dnsLookup.get("TXT"));
         } finally {
@@ -61,7 +61,7 @@ public class DNSUtil {
 
     public static String[] getMXEntries(String domain) throws NamingException {
         Attributes dnsLookup = context.getAttributes(domain, new String[] {
-            "MX"
+                "MX"
         });
         return extractTextEntries(dnsLookup.get("MX"));
     }