You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2017/12/12 19:59:09 UTC

svn commit: r1817955 - /pivot/trunk/core/src/org/apache/pivot/beans/BeanMonitor.java

Author: rwhitcomb
Date: Tue Dec 12 19:59:09 2017
New Revision: 1817955

URL: http://svn.apache.org/viewvc?rev=1817955&view=rev
Log:
Some of the cleanup done to BeanMonitor actually broke the functionality
of script bind mapping from one attribute to another, because there was
a "break;" added after the first "ListenerList" "get" was found, instead
of going through every listener list as is really required.

Modified:
    pivot/trunk/core/src/org/apache/pivot/beans/BeanMonitor.java

Modified: pivot/trunk/core/src/org/apache/pivot/beans/BeanMonitor.java
URL: http://svn.apache.org/viewvc/pivot/trunk/core/src/org/apache/pivot/beans/BeanMonitor.java?rev=1817955&r1=1817954&r2=1817955&view=diff
==============================================================================
--- pivot/trunk/core/src/org/apache/pivot/beans/BeanMonitor.java (original)
+++ pivot/trunk/core/src/org/apache/pivot/beans/BeanMonitor.java Tue Dec 12 19:59:09 2017
@@ -199,8 +199,6 @@ public class BeanMonitor {
                     } catch (IllegalAccessException | InvocationTargetException exception) {
                         throw new RuntimeException(exception);
                     }
-
-                    break;
                 }
             }
         }