Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 53A16200BDC for ; Tue, 29 Nov 2016 22:11:34 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 527BC160AFC; Tue, 29 Nov 2016 21:11:34 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id F2156160B15 for ; Tue, 29 Nov 2016 22:11:31 +0100 (CET) Received: (qmail 46842 invoked by uid 500); 29 Nov 2016 21:11:31 -0000 Mailing-List: contact notifications-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list notifications@commons.apache.org Received: (qmail 46832 invoked by uid 99); 29 Nov 2016 21:11:31 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Nov 2016 21:11:31 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id E7D5DC0A27 for ; Tue, 29 Nov 2016 21:11:29 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.199 X-Spam-Level: X-Spam-Status: No, score=-1.199 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id srg5MQpOjgol for ; Tue, 29 Nov 2016 21:11:09 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 494645F480 for ; Tue, 29 Nov 2016 21:11:01 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 6C02BE8666 for ; Tue, 29 Nov 2016 21:10:57 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 525C73A29E2 for ; Tue, 29 Nov 2016 21:10:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1001851 [22/41] - in /websites/production/commons/content/proper/commons-configuration: ./ cobertura/ userguide/ userguide_v1.10/ Date: Tue, 29 Nov 2016 21:10:53 -0000 To: notifications@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20161129211057.525C73A29E2@svn01-us-west.apache.org> archived-at: Tue, 29 Nov 2016 21:11:34 -0000 Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.ListDelimiterHandler.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.ListDelimiterHandler.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.ListDelimiterHandler.html Tue Nov 29 21:10:49 2016 @@ -155,7 +155,7 @@
         public Object transformValue(Object value)
 69  
         {
-  70  6116
             return value;
+  70  6088
             return value;
 71  
         }
 72   @@ -278,6 +278,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.PropertyConverter.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.PropertyConverter.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.PropertyConverter.html Tue Nov 29 21:10:49 2016 @@ -198,24 +198,24 @@
             DefaultConversionHandler convHandler) throws ConversionException
 92  
     {
-  93  14435
         if (cls.isInstance(value))
+  93  14343
         if (cls.isInstance(value))
 94  
         {
-  95  12947
             return value; // no conversion needed
+  95  12862
             return value; // no conversion needed
 96  
         }
 97  
 
-  98  1550
         if (String.class.equals(cls))
+  98  1535
         if (String.class.equals(cls))
 99  
         {
 100  11
             return String.valueOf(value);
 101  
         }
-  102  1538
         if (Boolean.class.equals(cls) || Boolean.TYPE.equals(cls))
+  102  1523
         if (Boolean.class.equals(cls) || Boolean.TYPE.equals(cls))
 103  
         {
-  104  932
             return toBoolean(value);
+  104  916
             return toBoolean(value);
 105  
         }
 106  607
         else if (Character.class.equals(cls) || Character.TYPE.equals(cls))
@@ -363,23 +363,23 @@
     public static Boolean toBoolean(Object value) throws ConversionException
 196  
     {
-  197  933
         if (value instanceof Boolean)
+  197  916
         if (value instanceof Boolean)
 198  
         {
 199  0
             return (Boolean) value;
 200  
         }
-  201  932
         else if (value instanceof String)
+  201  915
         else if (value instanceof String)
 202  
         {
-  203  928
             Boolean b = BooleanUtils.toBooleanObject((String) value);
-  204  926
             if (b == null)
+  203  912
             Boolean b = BooleanUtils.toBooleanObject((String) value);
+  204  912
             if (b == null)
 205  
             {
 206  5
                 throw new ConversionException("The value " + value + " can't be converted to a Boolean object");
 207  
             }
-  208  923
             return b;
+  208  907
             return b;
 209  
         }
 210   @@ -1450,6 +1450,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.ValueTransformer.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.ValueTransformer.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.convert.ValueTransformer.html Tue Nov 29 21:10:49 2016 @@ -131,6 +131,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.BaseEventSource.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.BaseEventSource.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.BaseEventSource.html Tue Nov 29 21:10:49 2016 @@ -161,7 +161,7 @@
 
 72  
     /** A lock object for guarding access to the detail events counter. */
-  73  15696
     private final Object lockDetailEventsCount = new Object();
+  73  15537
     private final Object lockDetailEventsCount = new Object();
 74  
 
 75   @@ -178,9 +178,9 @@
      */
 81  
     public BaseEventSource()
-  82  15696
     {
-  83  15696
         initListeners();
-  84  15700
     }
+  82  15537
     {
+  83  15537
         initListeners();
+  84  15537
     }
 85  
 
 86   @@ -315,8 +315,8 @@
             EventListener<? super T> listener)
 158  
     {
-  159  8385
         eventListeners.addEventListener(eventType, listener);
-  160  8534
     }
+  159  8469
         eventListeners.addEventListener(eventType, listener);
+  160  8493
     }
 161  
 
 162   @@ -327,7 +327,7 @@
             EventType<T> eventType, EventListener<? super T> listener)
 165  
     {
-  166  577
         return eventListeners.removeEventListener(eventType, listener);
+  166  573
         return eventListeners.removeEventListener(eventType, listener);
 167  
     }
 168   @@ -391,7 +391,7 @@
     public void copyEventListeners(BaseEventSource source)
 201  
     {
-  202  535
         if (source == null)
+  202  522
         if (source == null)
 203  
         {
 204  1
             throw new IllegalArgumentException(
@@ -399,8 +399,8 @@
                     "Target event source must not be null!");
 206  
         }
-  207  534
         source.eventListeners.addAll(eventListeners);
-  208  534
     }
+  207  521
         source.eventListeners.addAll(eventListeners);
+  208  521
     }
 209  
 
 210   @@ -433,12 +433,12 @@
             String propName, Object propValue, boolean before)
 224  
     {
-  225  80773
         if (checkDetailEvents(-1))
+  225  80703
         if (checkDetailEvents(-1))
 226  
         {
-  227  76861
             EventListenerList.EventListenerIterator<T> it =
-  228  76861
                     eventListeners.getEventListenerIterator(type);
-  229  76861
             if (it.hasNext())
+  227  76791
             EventListenerList.EventListenerIterator<T> it =
+  228  76791
                     eventListeners.getEventListenerIterator(type);
+  229  76791
             if (it.hasNext())
 230  
             {
 231  19165
                 ConfigurationEvent event =
@@ -453,7 +453,7 @@
             }
 238  
         }
-  239  80773
     }
+  239  80703
     }
 240  
 
 241   @@ -627,8 +627,8 @@
     private void initListeners()
 332  
     {
-  333  15738
         eventListeners = new EventListenerList();
-  334  15741
     }
+  333  15578
         eventListeners = new EventListenerList();
+  334  15578
     }
 335  
 
 336   @@ -651,10 +651,10 @@
     private boolean checkDetailEvents(int limit)
 345  
     {
-  346  80778
         synchronized (lockDetailEventsCount)
+  346  80708
         synchronized (lockDetailEventsCount)
 347  
         {
-  348  80778
             return detailEvents > limit;
+  348  80708
             return detailEvents > limit;
 349  0
         }
 350  
     }
@@ -662,6 +662,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.ConfigurationErrorEvent.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.ConfigurationErrorEvent.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.ConfigurationErrorEvent.html Tue Nov 29 21:10:49 2016 @@ -338,6 +338,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.ConfigurationEvent.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.ConfigurationEvent.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.ConfigurationEvent.html Tue Nov 29 21:10:49 2016 @@ -432,6 +432,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.Event.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.Event.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.Event.html Tue Nov 29 21:10:49 2016 @@ -152,15 +152,15 @@
     public Event(Object source, EventType<? extends Event> evType)
 68  
     {
-  69  35390
         super(source);
-  70  35398
         if (evType == null)
+  69  35207
         super(source);
+  70  35207
         if (evType == null)
 71  
         {
 72  1
             throw new IllegalArgumentException("Event type must not be null!");
 73  
         }
-  74  35414
         eventType = evType;
-  75  35417
     }
+  74  35224
         eventType = evType;
+  75  35226
     }
 76  
 
 77   @@ -177,7 +177,7 @@
     public EventType<? extends Event> getEventType()
 83  
     {
-  84  54542
         return eventType;
+  84  54088
         return eventType;
 85  
     }
 86   @@ -245,6 +245,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListener.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListener.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListener.html Tue Nov 29 21:10:49 2016 @@ -121,6 +121,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListenerList.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListenerList.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListenerList.html Tue Nov 29 21:10:49 2016 @@ -129,7 +129,7 @@
  * @since 2.0
 55  
  */
-  56  24637
 public class EventListenerList
+  56  24552
 public class EventListenerList
 57  
 {
 58   @@ -146,11 +146,11 @@
      */
 64  
     public EventListenerList()
-  65  19386
     {
-  66  19386
         listeners =
+  65  19209
     {
+  66  19209
         listeners =
 67  
                 new CopyOnWriteArrayList<EventListenerRegistrationData<?>>();
-  68  19389
     }
+  68  19209
     }
 69  
 
 70   @@ -177,8 +177,8 @@
             EventListener<? super T> listener)
 81  
     {
-  82  13331
         listeners.add(new EventListenerRegistrationData<T>(type, listener));
-  83  13489
     }
+  82  13371
         listeners.add(new EventListenerRegistrationData<T>(type, listener));
+  83  13392
     }
 84  
 
 85   @@ -207,7 +207,7 @@
             EventListenerRegistrationData<T> regData)
 97  
     {
-  98  227
         if (regData == null)
+  98  215
         if (regData == null)
 99  
         {
 100  1
             throw new IllegalArgumentException(
@@ -215,8 +215,8 @@
                     "EventListenerRegistrationData must not be null!");
 102  
         }
-  103  226
         listeners.add(regData);
-  104  226
     }
+  103  214
         listeners.add(regData);
+  104  214
     }
 105  
 
 106   @@ -251,8 +251,8 @@
             EventType<T> eventType, EventListener<? super T> listener)
 121  
     {
-  122  1214
         return !(listener == null || eventType == null)
-  123  604
                 && removeEventListener(new EventListenerRegistrationData<T>(
+  122  1206
         return !(listener == null || eventType == null)
+  123  600
                 && removeEventListener(new EventListenerRegistrationData<T>(
 124  
                         eventType, listener));
 125   @@ -285,7 +285,7 @@
             EventListenerRegistrationData<T> regData)
 139  
     {
-  140  615
         return listeners.remove(regData);
+  140  611
         return listeners.remove(regData);
 141  
     }
 142   @@ -306,7 +306,7 @@
     public void fire(Event event)
 150  
     {
-  151  16190
         if (event == null)
+  151  16015
         if (event == null)
 152  
         {
 153  1
             throw new IllegalArgumentException(
@@ -316,15 +316,15 @@
         }
 156  
 
-  157  16218
         for (EventListenerIterator<? extends Event> iterator =
-  158  16212
                 getEventListenerIterator(event.getEventType()); iterator
-  159  20542
                 .hasNext();)
+  157  16047
         for (EventListenerIterator<? extends Event> iterator =
+  158  16045
                 getEventListenerIterator(event.getEventType()); iterator
+  159  20257
                 .hasNext();)
 160  
         {
-  161  4323
             iterator.invokeNextListenerUnchecked(event);
+  161  4238
             iterator.invokeNextListenerUnchecked(event);
 162  
         }
-  163  16231
     }
+  163  16049
     }
 164  
 
 165   @@ -388,7 +388,7 @@
             EventType<T> eventType)
 196  
     {
-  197  93165
         return new EventListenerIterator<T>(listeners.iterator(), eventType);
+  197  92915
         return new EventListenerIterator<T>(listeners.iterator(), eventType);
 198  
     }
 199   @@ -409,7 +409,7 @@
     public List<EventListenerRegistrationData<?>> getRegistrations()
 207  
     {
-  208  4502
         return Collections.unmodifiableList(listeners);
+  208  4360
         return Collections.unmodifiableList(listeners);
 209  
     }
 210   @@ -518,7 +518,7 @@
     public void addAll(EventListenerList c)
 269  
     {
-  270  1100
         if (c == null)
+  270  1074
         if (c == null)
 271  
         {
 272  1
             throw new IllegalArgumentException(
@@ -528,12 +528,12 @@
         }
 275  
 
-  276  1099
         for (EventListenerRegistrationData<?> regData : c.getRegistrations())
+  276  1073
         for (EventListenerRegistrationData<?> regData : c.getRegistrations())
 277  
         {
-  278  221
             addEventListener(regData);
-  279  221
         }
-  280  1099
     }
+  278  209
             addEventListener(regData);
+  279  209
         }
+  280  1073
     }
 281  
 
 282   @@ -564,9 +564,9 @@
     {
 295  
         @SuppressWarnings("rawtypes")
-  296  24637
         EventListener rowListener = listener;
-  297  24637
         rowListener.onEvent(event);
-  298  24636
     }
+  296  24552
         EventListener rowListener = listener;
+  297  24552
         rowListener.onEvent(event);
+  298  24551
     }
 299  
 
 300   @@ -585,7 +585,7 @@
      * @param <T> the event type
 307  
      */
-  308  97518
     public static final class EventListenerIterator<T extends Event> implements
+  308  97210
     public static final class EventListenerIterator<T extends Event> implements
 309  
             Iterator<EventListener<? super T>>
 310   @@ -618,12 +618,12 @@
         private EventListenerIterator(
 324  
                 Iterator<EventListenerRegistrationData<?>> it, EventType<T> base)
-  325  93118
         {
-  326  93119
             underlyingIterator = it;
-  327  93121
             baseEventType = base;
-  328  93123
             acceptedTypes = EventType.fetchSuperEventTypes(base);
-  329  93170
             initNextElement();
-  330  93152
         }
+  325  92882
         {
+  326  92884
             underlyingIterator = it;
+  327  92888
             baseEventType = base;
+  328  92886
             acceptedTypes = EventType.fetchSuperEventTypes(base);
+  329  92917
             initNextElement();
+  330  92889
         }
 331  
 
 332   @@ -632,7 +632,7 @@
         public boolean hasNext()
 334  
         {
-  335  137026
             return nextElement != null;
+  335  136693
             return nextElement != null;
 336  
         }
 337   @@ -643,7 +643,7 @@
         public EventListener<? super T> next()
 340  
         {
-  341  24697
             if (nextElement == null)
+  341  24612
             if (nextElement == null)
 342  
             {
 343  1
                 throw new NoSuchElementException("No more event listeners!");
@@ -651,9 +651,9 @@
             }
 345  
 
-  346  24696
             EventListener<? super T> result = nextElement;
-  347  24696
             initNextElement();
-  348  24696
             return result;
+  346  24611
             EventListener<? super T> result = nextElement;
+  347  24611
             initNextElement();
+  348  24611
             return result;
 349  
         }
 350   @@ -712,20 +712,20 @@
         private void initNextElement()
 379  
         {
-  380  117848
             nextElement = null;
-  381  156495
             while (underlyingIterator.hasNext() && nextElement == null)
+  380  117505
             nextElement = null;
+  381  155657
             while (underlyingIterator.hasNext() && nextElement == null)
 382  
             {
-  383  38642
                 EventListenerRegistrationData<?> regData =
-  384  38642
                         underlyingIterator.next();
-  385  38642
                 if (acceptedTypes.contains(regData.getEventType()))
+  383  38144
                 EventListenerRegistrationData<?> regData =
+  384  38144
                         underlyingIterator.next();
+  385  38144
                 if (acceptedTypes.contains(regData.getEventType()))
 386  
                 {
-  387  24699
                     nextElement = castListener(regData);
+  387  24614
                     nextElement = castListener(regData);
 388  
                 }
-  389  38642
             }
-  390  117850
         }
+  389  38144
             }
+  390  117501
         }
 391  
 
 392   @@ -780,9 +780,9 @@
         private void invokeNextListenerUnchecked(Event event)
 419  
         {
-  420  24637
             EventListener<? super T> listener = next();
-  421  24637
             callListener(listener, event);
-  422  24636
         }
+  420  24552
             EventListener<? super T> listener = next();
+  421  24552
             callListener(listener, event);
+  422  24551
         }
 423  
 
 424   @@ -811,8 +811,8 @@
         {
 436  
             @SuppressWarnings("rawtypes")
-  437  24699
             EventListener listener = regData.getListener();
-  438  24699
             return listener;
+  437  24614
             EventListener listener = regData.getListener();
+  438  24614
             return listener;
 439  
         }
 440   @@ -821,6 +821,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListenerRegistrationData.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListenerRegistrationData.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventListenerRegistrationData.html Tue Nov 29 21:10:49 2016 @@ -131,14 +131,14 @@
     public EventListenerRegistrationData(EventType<T> type,
 57  
             EventListener<? super T> lstnr)
-  58  13932
     {
-  59  13942
         if (type == null)
+  58  13978
     {
+  59  13980
         if (type == null)
 60  
         {
 61  1
             throw new IllegalArgumentException("Event type must not be null!");
 62  
         }
-  63  13964
         if (lstnr == null)
+  63  13981
         if (lstnr == null)
 64  
         {
 65  2
             throw new IllegalArgumentException(
@@ -148,9 +148,9 @@
         }
 68  
 
-  69  13967
         eventType = type;
-  70  13967
         listener = lstnr;
-  71  13966
     }
+  69  13979
         eventType = type;
+  70  13981
         listener = lstnr;
+  71  13981
     }
 72  
 
 73   @@ -167,7 +167,7 @@
     public EventType<T> getEventType()
 79  
     {
-  80  42363
         return eventType;
+  80  41836
         return eventType;
 81  
     }
 82   @@ -186,7 +186,7 @@
     public EventListener<? super T> getListener()
 89  
     {
-  90  28462
         return listener;
+  90  28348
         return listener;
 91  
     }
 92   @@ -226,13 +226,13 @@
     public boolean equals(Object obj)
 111  
     {
-  112  645
         if (this == obj)
+  112  641
         if (this == obj)
 113  
         {
 114  13
             return true;
 115  
         }
-  116  632
         if (!(obj instanceof EventListenerRegistrationData))
+  116  628
         if (!(obj instanceof EventListenerRegistrationData))
 117  
         {
 118  0
             return false;
@@ -240,17 +240,17 @@
         }
 120  
 
-  121  632
         EventListenerRegistrationData<?> c =
+  121  628
         EventListenerRegistrationData<?> c =
 122  
                 (EventListenerRegistrationData<?>) obj;
-  123  1264
         return getListener() == c.getListener()
-  124  590
                 && getEventType().equals(c.getEventType());
+  123  1256
         return getListener() == c.getListener()
+  124  586
                 && getEventType().equals(c.getEventType());
 125  
     }
 126  
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventSource.html ============================================================================== --- websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventSource.html (original) +++ websites/production/commons/content/proper/commons-configuration/cobertura/org.apache.commons.configuration2.event.EventSource.html Tue Nov 29 21:10:49 2016 @@ -147,6 +147,6 @@
 }
- + \ No newline at end of file