Merge xdebug from 1.3.x.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / core / PHPDebugUtils.java
index 8b377a7..70093d8 100644 (file)
@@ -7,12 +7,12 @@ import org.w3c.dom.NamedNodeMap;
 import org.w3c.dom.Node;
 
 public class PHPDebugUtils {
-       public static String getAttributeValue (Node CurrentNode, String AttributeName) {
+       public static String getAttributeValue(Node CurrentNode, String AttributeName) {
                String strValue = "";
                if (CurrentNode.hasAttributes()) {
                        NamedNodeMap listAttribute = CurrentNode.getAttributes();
                        Node attribute = listAttribute.getNamedItem(AttributeName);
-                       if (attribute !=null)
+                       if (attribute != null)
                                strValue = attribute.getNodeValue();
                }
                return strValue;