whitespace fixups
[jSite2.git] / src / net / pterodactylus / util / beans / AbstractBean.java
index b2da732..7200324 100644 (file)
@@ -27,7 +27,7 @@ import java.util.List;
 
 /**
  * Abstract bean super class that contains property change listener management.
- * 
+ *
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public abstract class AbstractBean {
@@ -37,7 +37,7 @@ public abstract class AbstractBean {
 
        /**
         * Adds a property change listener.
-        * 
+        *
         * @param propertyChangeListener
         *            The property change listener to add
         */
@@ -47,7 +47,7 @@ public abstract class AbstractBean {
 
        /**
         * Removes a property change listener.
-        * 
+        *
         * @param propertyChangeListener
         *            The property change listener to remove
         */
@@ -57,7 +57,7 @@ public abstract class AbstractBean {
 
        /**
         * Notifies all listeners that a property has changed.
-        * 
+        *
         * @param property
         *            The name of the property
         * @param oldValue
@@ -67,7 +67,7 @@ public abstract class AbstractBean {
         */
        protected void firePropertyChange(String property, Object oldValue, Object newValue) {
                PropertyChangeEvent propertyChangeEvent = new PropertyChangeEvent(this, property, oldValue, newValue);
-               for (PropertyChangeListener propertyChangeListener: propertyChangeListeners) {
+               for (PropertyChangeListener propertyChangeListener : propertyChangeListeners) {
                        propertyChangeListener.propertyChange(propertyChangeEvent);
                }
 
@@ -75,7 +75,7 @@ public abstract class AbstractBean {
 
        /**
         * Fires a property change event if the two values are not equal.
-        * 
+        *
         * @param propertyName
         *            The name of the property
         * @param oldValue
@@ -97,7 +97,7 @@ public abstract class AbstractBean {
         * Compares the two objects and returns whether they are equal according to
         * {@link Object#equals(Object)}. This method takes <code>null</code>
         * into account as a valid value for an object.
-        * 
+        *
         * @param first
         *            The first object
         * @param second