Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java Fri Apr 27 
18:09:02 2018
@@ -107,7 +107,7 @@ public interface ExpanderListener {
      * @param expander      The expander that has changed.
      * @param previousTitle The previous title for the expander.
      */
-    default public void titleChanged(Expander expander, String previousTitle) {
+    default void titleChanged(Expander expander, String previousTitle) {
     }
 
     /**
@@ -115,7 +115,7 @@ public interface ExpanderListener {
      *
      * @param expander The expander that has changed.
      */
-    default public void collapsibleChanged(Expander expander) {
+    default void collapsibleChanged(Expander expander) {
     }
 
     /**
@@ -124,7 +124,7 @@ public interface ExpanderListener {
      * @param expander The expander that is about to expand or collapse.
      * @return The consensus vote as to whether to allow the change.
      */
-    default public Vote previewExpandedChange(Expander expander) {
+    default Vote previewExpandedChange(Expander expander) {
         return Vote.APPROVE;
     }
 
@@ -134,7 +134,7 @@ public interface ExpanderListener {
      * @param expander The expander that is not going to change.
      * @param reason   The consensus vote that disallowed the change.
      */
-    default public void expandedChangeVetoed(Expander expander, Vote reason) {
+    default void expandedChangeVetoed(Expander expander, Vote reason) {
     }
 
     /**
@@ -142,7 +142,7 @@ public interface ExpanderListener {
      *
      * @param expander The expander that has now expanded or collapsed.
      */
-    default public void expandedChanged(Expander expander) {
+    default void expandedChanged(Expander expander) {
     }
 
     /**
@@ -151,6 +151,6 @@ public interface ExpanderListener {
      * @param expander        The expander that has changed content.
      * @param previousContent The previous content of the expander.
      */
-    default public void contentChanged(Expander expander, Component 
previousContent) {
+    default void contentChanged(Expander expander, Component previousContent) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java Fri Apr 
27 18:09:02 2018
@@ -109,7 +109,7 @@ public interface FileBrowserListener {
      * @param fileBrowser           The file browser that has changed.
      * @param previousRootDirectory The previous root directory of the browser.
      */
-    default public void rootDirectoryChanged(FileBrowser fileBrowser, File 
previousRootDirectory) {
+    default void rootDirectoryChanged(FileBrowser fileBrowser, File 
previousRootDirectory) {
     }
 
     /**
@@ -118,7 +118,7 @@ public interface FileBrowserListener {
      * @param fileBrowser The file browser that has changed.
      * @param file        The newly selected file.
      */
-    default public void selectedFileAdded(FileBrowser fileBrowser, File file) {
+    default void selectedFileAdded(FileBrowser fileBrowser, File file) {
     }
 
     /**
@@ -127,7 +127,7 @@ public interface FileBrowserListener {
      * @param fileBrowser The file browser that has changed.
      * @param file        The file that was just unselected.
      */
-    default public void selectedFileRemoved(FileBrowser fileBrowser, File 
file) {
+    default void selectedFileRemoved(FileBrowser fileBrowser, File file) {
     }
 
     /**
@@ -136,7 +136,7 @@ public interface FileBrowserListener {
      * @param fileBrowser           The file browser that has changed.
      * @param previousSelectedFiles The complete sequence of files that used 
to be selected.
      */
-    default public void selectedFilesChanged(FileBrowser fileBrowser, 
Sequence<File> previousSelectedFiles) {
+    default void selectedFilesChanged(FileBrowser fileBrowser, Sequence<File> 
previousSelectedFiles) {
     }
 
     /**
@@ -144,7 +144,7 @@ public interface FileBrowserListener {
      *
      * @param fileBrowser The file browser that has changed.
      */
-    default public void multiSelectChanged(FileBrowser fileBrowser) {
+    default void multiSelectChanged(FileBrowser fileBrowser) {
     }
 
     /**
@@ -153,7 +153,7 @@ public interface FileBrowserListener {
      * @param fileBrowser                The file browser that has changed.
      * @param previousDisabledFileFilter The previous disabled file filter.
      */
-    default public void disabledFileFilterChanged(FileBrowser fileBrowser,
+    default void disabledFileFilterChanged(FileBrowser fileBrowser,
         Filter<File> previousDisabledFileFilter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java Fri 
Apr 27 18:09:02 2018
@@ -93,7 +93,7 @@ public interface FileBrowserSheetListene
      * @param fileBrowserSheet The browser sheet that has changed.
      * @param previousMode     The previous mode that was in effect.
      */
-    default public void modeChanged(FileBrowserSheet fileBrowserSheet, 
FileBrowserSheet.Mode previousMode) {
+    default void modeChanged(FileBrowserSheet fileBrowserSheet, 
FileBrowserSheet.Mode previousMode) {
     }
 
     /**
@@ -102,7 +102,7 @@ public interface FileBrowserSheetListene
      * @param fileBrowserSheet      The browser sheet that has changed.
      * @param previousRootDirectory The previous root directory that was being 
browsed.
      */
-    default public void rootDirectoryChanged(FileBrowserSheet 
fileBrowserSheet, File previousRootDirectory) {
+    default void rootDirectoryChanged(FileBrowserSheet fileBrowserSheet, File 
previousRootDirectory) {
     }
 
     /**
@@ -111,7 +111,7 @@ public interface FileBrowserSheetListene
      * @param fileBrowserSheet      The browser sheet that has changed.
      * @param previousSelectedFiles The complete sequence of files that used 
to be selected.
      */
-    default public void selectedFilesChanged(FileBrowserSheet fileBrowserSheet,
+    default void selectedFilesChanged(FileBrowserSheet fileBrowserSheet,
         Sequence<File> previousSelectedFiles) {
     }
 
@@ -121,7 +121,7 @@ public interface FileBrowserSheetListene
      * @param fileBrowserSheet           The browser sheet that has changed.
      * @param previousDisabledFileFilter The previous disabled file filter.
      */
-    default public void disabledFileFilterChanged(FileBrowserSheet 
fileBrowserSheet,
+    default void disabledFileFilterChanged(FileBrowserSheet fileBrowserSheet,
         Filter<File> previousDisabledFileFilter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java Fri Apr 
27 18:09:02 2018
@@ -72,7 +72,7 @@ public interface FormAttributeListener {
      * @param field         The field whose form label has changed.
      * @param previousLabel The previous form label for this field.
      */
-    default public void labelChanged(Form form, Component field, String 
previousLabel) {
+    default void labelChanged(Form form, Component field, String 
previousLabel) {
     }
 
     /**
@@ -81,7 +81,7 @@ public interface FormAttributeListener {
      * @param form  The enclosing form.
      * @param field The field that is or is not now required.
      */
-    default public void requiredChanged(Form form, Component field) {
+    default void requiredChanged(Form form, Component field) {
     }
 
     /**
@@ -91,6 +91,6 @@ public interface FormAttributeListener {
      * @param field        The field whose flag attribute has changed.
      * @param previousFlag The previous flag value for this field.
      */
-    default public void flagChanged(Form form, Component field, Form.Flag 
previousFlag) {
+    default void flagChanged(Form form, Component field, Form.Flag 
previousFlag) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java Fri Apr 27 
18:09:02 2018
@@ -91,7 +91,7 @@ public interface FormListener {
      * @param form  The form that has changed.
      * @param index The index where the new section has been inserted.
      */
-    default public void sectionInserted(Form form, int index) {
+    default void sectionInserted(Form form, int index) {
     }
 
     /**
@@ -101,7 +101,7 @@ public interface FormListener {
      * @param index   The starting index where sections were removed.
      * @param removed The complete sequence of the removed sections.
      */
-    default public void sectionsRemoved(Form form, int index, 
Sequence<Form.Section> removed) {
+    default void sectionsRemoved(Form form, int index, Sequence<Form.Section> 
removed) {
     }
 
     /**
@@ -109,7 +109,7 @@ public interface FormListener {
      *
      * @param section The form section whose heading changed.
      */
-    default public void sectionHeadingChanged(Form.Section section) {
+    default void sectionHeadingChanged(Form.Section section) {
     }
 
     /**
@@ -118,7 +118,7 @@ public interface FormListener {
      * @param section The enclosing form section that has changed.
      * @param index   The index where a new field has been inserted.
      */
-    default public void fieldInserted(Form.Section section, int index) {
+    default void fieldInserted(Form.Section section, int index) {
     }
 
     /**
@@ -128,6 +128,6 @@ public interface FormListener {
      * @param index   The starting index where fields were removed.
      * @param fields  The complete sequence of fields that were removed.
      */
-    default public void fieldsRemoved(Form.Section section, int index, 
Sequence<Component> fields) {
+    default void fieldsRemoved(Form.Section section, int index, 
Sequence<Component> fields) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/GaugeListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/GaugeListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/GaugeListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/GaugeListener.java Fri Apr 27 
18:09:02 2018
@@ -68,7 +68,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge that has changed.
      * @param previousOrigin The previous origin value.
      */
-    default public void originChanged(Gauge<T> gauge, Origin previousOrigin) {
+    default void originChanged(Gauge<T> gauge, Origin previousOrigin) {
     }
 
     /**
@@ -77,7 +77,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge that is changing.
      * @param previousValue The old value.
      */
-    default public void valueChanged(Gauge<T> gauge, T previousValue) {
+    default void valueChanged(Gauge<T> gauge, T previousValue) {
     }
 
     /**
@@ -86,7 +86,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge whose text changed.
      * @param previousText The previous text.
      */
-    default public void textChanged(Gauge<T> gauge, String previousText) {
+    default void textChanged(Gauge<T> gauge, String previousText) {
     }
 
     /**
@@ -95,7 +95,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge that is changing.
      * @param previousMinValue The previous minimum.
      */
-    default public void minValueChanged(Gauge<T> gauge, T previousMinValue) {
+    default void minValueChanged(Gauge<T> gauge, T previousMinValue) {
     }
 
     /**
@@ -104,7 +104,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge that is changing.
      * @param previousMaxValue The previous maximum.
      */
-    default public void maxValueChanged(Gauge<T> gauge, T previousMaxValue) {
+    default void maxValueChanged(Gauge<T> gauge, T previousMaxValue) {
     }
 
     /**
@@ -113,7 +113,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge we're talking about.
      * @param previousWarningLevel The previous value for the warning level.
      */
-    default public void warningLevelChanged(Gauge<T> gauge, T 
previousWarningLevel) {
+    default void warningLevelChanged(Gauge<T> gauge, T previousWarningLevel) {
     }
 
     /**
@@ -122,7 +122,7 @@ public interface GaugeListener<T extends
      * @param gauge The gauge we're talking about.
      * @param previousCriticalLevel The previous value for the critical level.
      */
-    default public void criticalLevelChanged(Gauge<T> gauge, T 
previousCriticalLevel) {
+    default void criticalLevelChanged(Gauge<T> gauge, T previousCriticalLevel) 
{
     }
 }
 

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java Fri Apr 27 
18:09:02 2018
@@ -102,7 +102,7 @@ public interface GridPaneListener {
      * @param gridPane            The grid pane that has changed.
      * @param previousColumnCount The previous column count for the grid.
      */
-    default public void columnCountChanged(GridPane gridPane, int 
previousColumnCount) {
+    default void columnCountChanged(GridPane gridPane, int 
previousColumnCount) {
     }
 
     /**
@@ -111,7 +111,7 @@ public interface GridPaneListener {
      * @param gridPane The grid pane that has changed.
      * @param index    The index of the row that was just inserted.
      */
-    default public void rowInserted(GridPane gridPane, int index) {
+    default void rowInserted(GridPane gridPane, int index) {
     }
 
     /**
@@ -121,7 +121,7 @@ public interface GridPaneListener {
      * @param index    The starting index of the row(s) that were removed.
      * @param rows     The complete sequence of removed rows.
      */
-    default public void rowsRemoved(GridPane gridPane, int index, 
Sequence<GridPane.Row> rows) {
+    default void rowsRemoved(GridPane gridPane, int index, 
Sequence<GridPane.Row> rows) {
     }
 
     /**
@@ -130,7 +130,7 @@ public interface GridPaneListener {
      * @param row    The parent row of the cell that was inserted.
      * @param column The column index of the inserted cell.
      */
-    default public void cellInserted(GridPane.Row row, int column) {
+    default void cellInserted(GridPane.Row row, int column) {
     }
 
     /**
@@ -140,7 +140,7 @@ public interface GridPaneListener {
      * @param column  The starting column index of the removed cells.
      * @param removed The complete sequence of removed cells.
      */
-    default public void cellsRemoved(GridPane.Row row, int column, 
Sequence<Component> removed) {
+    default void cellsRemoved(GridPane.Row row, int column, 
Sequence<Component> removed) {
     }
 
     /**
@@ -150,6 +150,6 @@ public interface GridPaneListener {
      * @param column            The column index of the updated cell.
      * @param previousComponent The previous contents of this cell.
      */
-    default public void cellUpdated(GridPane.Row row, int column, Component 
previousComponent) {
+    default void cellUpdated(GridPane.Row row, int column, Component 
previousComponent) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java Fri Apr 27 
18:09:02 2018
@@ -62,7 +62,7 @@ public interface ImageViewListener {
      * @param imageView     The image view whose image has changed.
      * @param previousImage The previous image associated with this image view.
      */
-    default public void imageChanged(ImageView imageView, Image previousImage) 
{
+    default void imageChanged(ImageView imageView, Image previousImage) {
     }
 
     /**
@@ -70,6 +70,6 @@ public interface ImageViewListener {
      *
      * @param imageView The image view whose asynchronous flag has changed.
      */
-    default public void asynchronousChanged(ImageView imageView) {
+    default void asynchronousChanged(ImageView imageView) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java Fri Apr 
27 18:09:02 2018
@@ -73,7 +73,7 @@ public interface LabelBindingListener {
      * @param label           The label whose binding has changed.
      * @param previousTextKey The previous binding key for the label text.
      */
-    default public void textKeyChanged(Label label, String previousTextKey) {
+    default void textKeyChanged(Label label, String previousTextKey) {
     }
 
     /**
@@ -82,7 +82,7 @@ public interface LabelBindingListener {
      * @param label                The label whose binding has changed.
      * @param previousTextBindType The previous bind type for the label text.
      */
-    default public void textBindTypeChanged(Label label, BindType 
previousTextBindType) {
+    default void textBindTypeChanged(Label label, BindType 
previousTextBindType) {
     }
 
     /**
@@ -91,6 +91,6 @@ public interface LabelBindingListener {
      * @param label                   The label whose binding has changed.
      * @param previousTextBindMapping The previous bind mapping for the label 
text.
      */
-    default public void textBindMappingChanged(Label label, 
Label.TextBindMapping previousTextBindMapping) {
+    default void textBindMappingChanged(Label label, Label.TextBindMapping 
previousTextBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java Fri Apr 27 
18:09:02 2018
@@ -60,7 +60,7 @@ public interface LabelListener {
      * @param label        The label that has changed.
      * @param previousText The previous text associated with the label.
      */
-    default public void textChanged(Label label, String previousText) {
+    default void textChanged(Label label, String previousText) {
     }
 
     /**
@@ -69,6 +69,6 @@ public interface LabelListener {
      * @param label                 The label that has changed.
      * @param previousMaximumLength The previous maximum text length for the 
label.
      */
-    default public void maximumLengthChanged(Label label, int 
previousMaximumLength) {
+    default void maximumLengthChanged(Label label, int previousMaximumLength) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java Fri 
Apr 27 18:09:02 2018
@@ -107,7 +107,7 @@ public interface ListButtonBindingListen
      * @param listButton          The list button that has changed.
      * @param previousListDataKey The previous binding key for the list data.
      */
-    default public void listDataKeyChanged(ListButton listButton, String 
previousListDataKey) {
+    default void listDataKeyChanged(ListButton listButton, String 
previousListDataKey) {
     }
 
     /**
@@ -116,7 +116,7 @@ public interface ListButtonBindingListen
      * @param listButton               The list button that has changed.
      * @param previousListDataBindType The previous bind type for the list 
data.
      */
-    default public void listDataBindTypeChanged(ListButton listButton, 
BindType previousListDataBindType) {
+    default void listDataBindTypeChanged(ListButton listButton, BindType 
previousListDataBindType) {
     }
 
     /**
@@ -125,7 +125,7 @@ public interface ListButtonBindingListen
      * @param listButton                  The list button that has changed.
      * @param previousListDataBindMapping The previous bind mapping for the 
list data.
      */
-    default public void listDataBindMappingChanged(ListButton listButton,
+    default void listDataBindMappingChanged(ListButton listButton,
         ListView.ListDataBindMapping previousListDataBindMapping) {
     }
 
@@ -135,7 +135,7 @@ public interface ListButtonBindingListen
      * @param listButton              The list button that has changed.
      * @param previousSelectedItemKey The previous binding key for the 
button's selected item.
      */
-    default public void selectedItemKeyChanged(ListButton listButton, String 
previousSelectedItemKey) {
+    default void selectedItemKeyChanged(ListButton listButton, String 
previousSelectedItemKey) {
     }
 
     /**
@@ -144,7 +144,7 @@ public interface ListButtonBindingListen
      * @param listButton                   The list button that has changed.
      * @param previousSelectedItemBindType The previous bind type for the 
selected item.
      */
-    default public void selectedItemBindTypeChanged(ListButton listButton,
+    default void selectedItemBindTypeChanged(ListButton listButton,
         BindType previousSelectedItemBindType) {
     }
 
@@ -154,7 +154,7 @@ public interface ListButtonBindingListen
      * @param listButton                      The list button that has changed.
      * @param previousSelectedItemBindMapping The previous bind mapping for 
the button's selected item.
      */
-    default public void selectedItemBindMappingChanged(ListButton listButton,
+    default void selectedItemBindMappingChanged(ListButton listButton,
         ListView.ItemBindMapping previousSelectedItemBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java Fri 
Apr 27 18:09:02 2018
@@ -91,7 +91,7 @@ public interface ListButtonItemListener
      * @param listButton The list button that has changed.
      * @param index      The index where the new data was inserted.
      */
-    default public void itemInserted(ListButton listButton, int index) {
+    default void itemInserted(ListButton listButton, int index) {
     }
 
     /**
@@ -101,7 +101,7 @@ public interface ListButtonItemListener
      * @param index      The starting index of the removed data items.
      * @param count      The number of items removed.
      */
-    default public void itemsRemoved(ListButton listButton, int index, int 
count) {
+    default void itemsRemoved(ListButton listButton, int index, int count) {
     }
 
     /**
@@ -110,7 +110,7 @@ public interface ListButtonItemListener
      * @param listButton The list button whose data has changed.
      * @param index      The index into the data list of the updated item.
      */
-    default public void itemUpdated(ListButton listButton, int index) {
+    default void itemUpdated(ListButton listButton, int index) {
     }
 
     /**
@@ -118,7 +118,7 @@ public interface ListButtonItemListener
      *
      * @param listButton The list button whose data was cleared.
      */
-    default public void itemsCleared(ListButton listButton) {
+    default void itemsCleared(ListButton listButton) {
     }
 
     /**
@@ -126,6 +126,6 @@ public interface ListButtonItemListener
      *
      * @param listButton The list button whose data has been sorted.
      */
-    default public void itemsSorted(ListButton listButton) {
+    default void itemsSorted(ListButton listButton) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java Fri Apr 27 
18:09:02 2018
@@ -97,7 +97,7 @@ public interface ListButtonListener {
      * @param listButton       The list button that has changed.
      * @param previousListData The previous list data.
      */
-    default public void listDataChanged(ListButton listButton, List<?> 
previousListData) {
+    default void listDataChanged(ListButton listButton, List<?> 
previousListData) {
     }
 
     /**
@@ -106,7 +106,7 @@ public interface ListButtonListener {
      * @param listButton           The list button that was changed.
      * @param previousItemRenderer The previous renderer for the button's 
items.
      */
-    default public void itemRendererChanged(ListButton listButton,
+    default void itemRendererChanged(ListButton listButton,
         ListView.ItemRenderer previousItemRenderer) {
     }
 
@@ -115,7 +115,7 @@ public interface ListButtonListener {
      *
      * @param listButton The list button that has changed.
      */
-    default public void repeatableChanged(ListButton listButton) {
+    default void repeatableChanged(ListButton listButton) {
     }
 
     /**
@@ -124,7 +124,7 @@ public interface ListButtonListener {
      * @param listButton                 The list button that has changed.
      * @param previousDisabledItemFilter The previous disabled item filter for 
the list button.
      */
-    default public void disabledItemFilterChanged(ListButton listButton,
+    default void disabledItemFilterChanged(ListButton listButton,
         Filter<?> previousDisabledItemFilter) {
     }
 
@@ -134,6 +134,6 @@ public interface ListButtonListener {
      * @param listButton       The list button that has changed.
      * @param previousListSize The previous value of the visible list size.
      */
-    default public void listSizeChanged(ListButton listButton, int 
previousListSize) {
+    default void listSizeChanged(ListButton listButton, int previousListSize) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java 
Fri Apr 27 18:09:02 2018
@@ -63,7 +63,7 @@ public interface ListButtonSelectionList
      * the index that was previously selected. Otherwise, contains the current
      * selection.
      */
-    default public void selectedIndexChanged(ListButton listButton, int 
previousSelectedIndex) {
+    default void selectedIndexChanged(ListButton listButton, int 
previousSelectedIndex) {
     }
 
     /**
@@ -73,6 +73,6 @@ public interface ListButtonSelectionList
      * @param previousSelectedItem The item that was previously selected, or
      * <tt>null</tt> if the previous selection cannot be determined.
      */
-    default public void selectedItemChanged(ListButton listButton, Object 
previousSelectedItem) {
+    default void selectedItemChanged(ListButton listButton, Object 
previousSelectedItem) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java Fri 
Apr 27 18:09:02 2018
@@ -207,7 +207,7 @@ public interface ListViewBindingListener
      * @param listView            The list view whose binding has changed.
      * @param previousListDataKey The previous binding key for the list data.
      */
-    default public void listDataKeyChanged(ListView listView, String 
previousListDataKey) {
+    default void listDataKeyChanged(ListView listView, String 
previousListDataKey) {
     }
 
     /**
@@ -216,7 +216,7 @@ public interface ListViewBindingListener
      * @param listView                 The list view whose binding has changed.
      * @param previousListDataBindType The previous bind type for the list 
data.
      */
-    default public void listDataBindTypeChanged(ListView listView, BindType 
previousListDataBindType) {
+    default void listDataBindTypeChanged(ListView listView, BindType 
previousListDataBindType) {
     }
 
     /**
@@ -225,7 +225,7 @@ public interface ListViewBindingListener
      * @param listView                    The list view whose binding has 
changed.
      * @param previousListDataBindMapping The previous bind mapping for the 
list data.
      */
-    default public void listDataBindMappingChanged(ListView listView,
+    default void listDataBindMappingChanged(ListView listView,
         ListView.ListDataBindMapping previousListDataBindMapping) {
     }
 
@@ -235,7 +235,7 @@ public interface ListViewBindingListener
      * @param listView                The list view whose binding has changed.
      * @param previousSelectedItemKey The previous binding key for the 
selected item.
      */
-    default public void selectedItemKeyChanged(ListView listView, String 
previousSelectedItemKey) {
+    default void selectedItemKeyChanged(ListView listView, String 
previousSelectedItemKey) {
     }
 
     /**
@@ -244,7 +244,7 @@ public interface ListViewBindingListener
      * @param listView                     The list view whose binding has 
changed.
      * @param previousSelectedItemBindType The previous bind type for the 
selected item.
      */
-    default public void selectedItemBindTypeChanged(ListView listView, 
BindType previousSelectedItemBindType) {
+    default void selectedItemBindTypeChanged(ListView listView, BindType 
previousSelectedItemBindType) {
     }
 
     /**
@@ -253,7 +253,7 @@ public interface ListViewBindingListener
      * @param listView                        The list view whose binding has 
changed.
      * @param previousSelectedItemBindMapping The previous bind mapping for 
the selected item.
      */
-    default public void selectedItemBindMappingChanged(ListView listView,
+    default void selectedItemBindMappingChanged(ListView listView,
         ListView.ItemBindMapping previousSelectedItemBindMapping) {
     }
 
@@ -263,7 +263,7 @@ public interface ListViewBindingListener
      * @param listView                 The list view whose binding has changed.
      * @param previousSelectedItemsKey The previous binding key for the 
selected items.
      */
-    default public void selectedItemsKeyChanged(ListView listView, String 
previousSelectedItemsKey) {
+    default void selectedItemsKeyChanged(ListView listView, String 
previousSelectedItemsKey) {
     }
 
     /**
@@ -272,7 +272,7 @@ public interface ListViewBindingListener
      * @param listView                      The list view whose binding has 
changed.
      * @param previousSelectedItemsBindType The previous bind type for the 
selected items.
      */
-    default public void selectedItemsBindTypeChanged(ListView listView,
+    default void selectedItemsBindTypeChanged(ListView listView,
         BindType previousSelectedItemsBindType) {
     }
 
@@ -282,7 +282,7 @@ public interface ListViewBindingListener
      * @param listView                         The list view whose binding has 
changed.
      * @param previousSelectedItemsBindMapping The previous bind mapping for 
the selected items.
      */
-    default public void selectedItemsBindMappingChanged(ListView listView,
+    default void selectedItemsBindMappingChanged(ListView listView,
         ListView.ItemBindMapping previousSelectedItemsBindMapping) {
     }
 
@@ -292,7 +292,7 @@ public interface ListViewBindingListener
      * @param listView                The list view whose binding has changed.
      * @param previousCheckedItemsKey The previous binding key for the checked 
items.
      */
-    default public void checkedItemsKeyChanged(ListView listView, String 
previousCheckedItemsKey) {
+    default void checkedItemsKeyChanged(ListView listView, String 
previousCheckedItemsKey) {
     }
 
     /**
@@ -301,7 +301,7 @@ public interface ListViewBindingListener
      * @param listView                     The list view whose binding has 
changed.
      * @param previousCheckedItemsBindType The previous bind type for the 
checked items.
      */
-    default public void checkedItemsBindTypeChanged(ListView listView, 
BindType previousCheckedItemsBindType) {
+    default void checkedItemsBindTypeChanged(ListView listView, BindType 
previousCheckedItemsBindType) {
     }
 
     /**
@@ -310,7 +310,7 @@ public interface ListViewBindingListener
      * @param listView                        The list view whose binding has 
changed.
      * @param previousCheckedItemsBindMapping The previous bind mapping 
function for the checked items.
      */
-    default public void checkedItemsBindMappingChanged(ListView listView,
+    default void checkedItemsBindMappingChanged(ListView listView,
         ListView.ItemBindMapping previousCheckedItemsBindMapping) {
     }
 
@@ -320,7 +320,7 @@ public interface ListViewBindingListener
      * @param listView              The list view whose binding has changed.
      * @param previousItemsStateKey The previous bind key for the items' state.
      */
-    default public void itemsStateKeyChanged(ListView listView, String 
previousItemsStateKey) {
+    default void itemsStateKeyChanged(ListView listView, String 
previousItemsStateKey) {
     }
 
     /**
@@ -329,7 +329,7 @@ public interface ListViewBindingListener
      * @param listView                   The list view whose binding has 
changed.
      * @param previousItemsStateBindType The previous bind type for the items' 
state.
      */
-    default public void itemsStateBindTypeChanged(ListView listView, BindType 
previousItemsStateBindType) {
+    default void itemsStateBindTypeChanged(ListView listView, BindType 
previousItemsStateBindType) {
     }
 
     /**
@@ -338,7 +338,7 @@ public interface ListViewBindingListener
      * @param listView                      The list view whose binding has 
changed.
      * @param previousItemsStateBindMapping The previous bind mapping function 
for the items' state.
      */
-    default public void itemsStateBindMappingChanged(ListView listView,
+    default void itemsStateBindMappingChanged(ListView listView,
         ListView.ItemStateBindMapping previousItemsStateBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java Fri Apr 
27 18:09:02 2018
@@ -91,7 +91,7 @@ public interface ListViewItemListener {
      * @param listView The source of the event.
      * @param index The index of the item that was inserted.
      */
-    default public void itemInserted(ListView listView, int index) {
+    default void itemInserted(ListView listView, int index) {
     }
 
     /**
@@ -102,7 +102,7 @@ public interface ListViewItemListener {
      * @param count The number of items that were removed, or <tt>-1</tt> if 
all
      * items were removed.
      */
-    default public void itemsRemoved(ListView listView, int index, int count) {
+    default void itemsRemoved(ListView listView, int index, int count) {
     }
 
     /**
@@ -111,7 +111,7 @@ public interface ListViewItemListener {
      * @param listView The source of the event.
      * @param index The first index affected by the event.
      */
-    default public void itemUpdated(ListView listView, int index) {
+    default void itemUpdated(ListView listView, int index) {
     }
 
     /**
@@ -119,7 +119,7 @@ public interface ListViewItemListener {
      *
      * @param listView The source of the event.
      */
-    default public void itemsCleared(ListView listView) {
+    default void itemsCleared(ListView listView) {
     }
 
     /**
@@ -127,6 +127,6 @@ public interface ListViewItemListener {
      *
      * @param listView The source of the event.
      */
-    default public void itemsSorted(ListView listView) {
+    default void itemsSorted(ListView listView) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java Fri 
Apr 27 18:09:02 2018
@@ -61,7 +61,7 @@ public interface ListViewItemStateListen
      * @param listView The list view whose state has changed.
      * @param index    The index of the item whose checked state has changed.
      */
-    default public void itemCheckedChanged(ListView listView, int index) {
+    default void itemCheckedChanged(ListView listView, int index) {
     }
 
     /**
@@ -71,7 +71,7 @@ public interface ListViewItemStateListen
      * @param listView The list view whose state has changed.
      * @param index    The index of the item whose tri-state has changed.
      */
-    default public void itemCheckedStateChanged(ListView listView, int index) {
+    default void itemCheckedStateChanged(ListView listView, int index) {
     }
 
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java Fri Apr 27 
18:09:02 2018
@@ -139,7 +139,7 @@ public interface ListViewListener {
      * @param listView         The source of the event.
      * @param previousListData The previous list data that was displayed.
      */
-    default public void listDataChanged(ListView listView, List<?> 
previousListData) {
+    default void listDataChanged(ListView listView, List<?> previousListData) {
     }
 
     /**
@@ -148,7 +148,7 @@ public interface ListViewListener {
      * @param listView             The source of the event.
      * @param previousItemRenderer The previous renderer used for each item.
      */
-    default public void itemRendererChanged(ListView listView, 
ListView.ItemRenderer previousItemRenderer) {
+    default void itemRendererChanged(ListView listView, ListView.ItemRenderer 
previousItemRenderer) {
     }
 
     /**
@@ -157,7 +157,7 @@ public interface ListViewListener {
      * @param listView           The source of the event.
      * @param previousItemEditor The previous editor used for updating items.
      */
-    default public void itemEditorChanged(ListView listView, 
ListView.ItemEditor previousItemEditor) {
+    default void itemEditorChanged(ListView listView, ListView.ItemEditor 
previousItemEditor) {
     }
 
     /**
@@ -166,7 +166,7 @@ public interface ListViewListener {
      * @param listView           The source of the event.
      * @param previousSelectMode The previous selection mode.
      */
-    default public void selectModeChanged(ListView listView, 
ListView.SelectMode previousSelectMode) {
+    default void selectModeChanged(ListView listView, ListView.SelectMode 
previousSelectMode) {
     }
 
     /**
@@ -174,7 +174,7 @@ public interface ListViewListener {
      *
      * @param listView The list view that has been changed.
      */
-    default public void checkmarksEnabledChanged(ListView listView) {
+    default void checkmarksEnabledChanged(ListView listView) {
     }
 
     /**
@@ -182,7 +182,7 @@ public interface ListViewListener {
      *
      * @param listView The list view that has been changed.
      */
-    default public void checkmarksTriStateChanged(ListView listView) {
+    default void checkmarksTriStateChanged(ListView listView) {
     }
 
     /**
@@ -191,7 +191,7 @@ public interface ListViewListener {
      *
      * @param listView The list view that has been changed.
      */
-    default public void checkmarksMixedAsCheckedChanged(ListView listView) {
+    default void checkmarksMixedAsCheckedChanged(ListView listView) {
     }
 
     /**
@@ -200,7 +200,7 @@ public interface ListViewListener {
      * @param listView                   The source of the event.
      * @param previousDisabledItemFilter The previous filter function used to 
disable specific items.
      */
-    default public void disabledItemFilterChanged(ListView listView, Filter<?> 
previousDisabledItemFilter) {
+    default void disabledItemFilterChanged(ListView listView, Filter<?> 
previousDisabledItemFilter) {
     }
 
     /**
@@ -210,7 +210,7 @@ public interface ListViewListener {
      * @param previousDisabledCheckmarkFilter The previous filter function 
used to disable checkmarks
      *                                        for certain items.
      */
-    default public void disabledCheckmarkFilterChanged(ListView listView,
+    default void disabledCheckmarkFilterChanged(ListView listView,
         Filter<?> previousDisabledCheckmarkFilter) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java Fri 
Apr 27 18:09:02 2018
@@ -83,7 +83,7 @@ public interface ListViewSelectionListen
      * @param rangeStart The start index of the range that was added, 
inclusive.
      * @param rangeEnd The end index of the range that was added, inclusive.
      */
-    default public void selectedRangeAdded(ListView listView, int rangeStart, 
int rangeEnd) {
+    default void selectedRangeAdded(ListView listView, int rangeStart, int 
rangeEnd) {
     }
 
     /**
@@ -95,7 +95,7 @@ public interface ListViewSelectionListen
      * @param rangeEnd The starting index of the range that was removed,
      * inclusive.
      */
-    default public void selectedRangeRemoved(ListView listView, int 
rangeStart, int rangeEnd) {
+    default void selectedRangeRemoved(ListView listView, int rangeStart, int 
rangeEnd) {
     }
 
     /**
@@ -110,7 +110,7 @@ public interface ListViewSelectionListen
      * indirectly as a result of a model change, contains the current 
selection.
      * Otherwise, contains <tt>null</tt>.
      */
-    default public void selectedRangesChanged(ListView listView, 
Sequence<Span> previousSelectedRanges) {
+    default void selectedRangesChanged(ListView listView, Sequence<Span> 
previousSelectedRanges) {
     }
 
     /**
@@ -119,6 +119,6 @@ public interface ListViewSelectionListen
      * @param listView The source of the event.
      * @param previousSelectedItem The item that was previously selected.
      */
-    default public void selectedItemChanged(ListView listView, Object 
previousSelectedItem) {
+    default void selectedItemChanged(ListView listView, Object 
previousSelectedItem) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuBarListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuBarListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuBarListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuBarListener.java Fri Apr 27 
18:09:02 2018
@@ -71,7 +71,7 @@ public interface MenuBarListener {
      * @param menuBar The menu bar that changed.
      * @param index The index where a new item was inserted.
      */
-    default public void itemInserted(MenuBar menuBar, int index) {
+    default void itemInserted(MenuBar menuBar, int index) {
     }
 
     /**
@@ -81,7 +81,7 @@ public interface MenuBarListener {
      * @param index The starting index where items were removed.
      * @param removed The sequence of removed items.
      */
-    default public void itemsRemoved(MenuBar menuBar, int index, 
Sequence<MenuBar.Item> removed) {
+    default void itemsRemoved(MenuBar menuBar, int index, 
Sequence<MenuBar.Item> removed) {
     }
 
     /**
@@ -90,6 +90,6 @@ public interface MenuBarListener {
      * @param menuBar The source of the event.
      * @param previousActiveItem Which item was active previously.
      */
-    default public void activeItemChanged(MenuBar menuBar, MenuBar.Item 
previousActiveItem) {
+    default void activeItemChanged(MenuBar menuBar, MenuBar.Item 
previousActiveItem) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuHandler.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuHandler.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuHandler.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuHandler.java Fri Apr 27 
18:09:02 2018
@@ -49,7 +49,7 @@ public interface MenuHandler {
      * @param component The component that is hosting the menu bar.
      * @param menuBar The menu bar to configure.
      */
-    default public void configureMenuBar(Component component, MenuBar menuBar) 
{
+    default void configureMenuBar(Component component, MenuBar menuBar) {
     }
 
     /**
@@ -59,7 +59,7 @@ public interface MenuHandler {
      * @param component The component that is hosting the menu bar.
      * @param menuBar The menu bar to clean up.
      */
-    default public void cleanupMenuBar(Component component, MenuBar menuBar) {
+    default void cleanupMenuBar(Component component, MenuBar menuBar) {
     }
 
     /**
@@ -73,7 +73,7 @@ public interface MenuHandler {
      * @return <tt>true</tt> to stop propagation of context menu configuration;
      * <tt>false</tt> to allow it to continue (default).
      */
-    default public boolean configureContextMenu(Component component, Menu 
menu, int x, int y) {
+    default boolean configureContextMenu(Component component, Menu menu, int 
x, int y) {
         return false;
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuListener.java Fri Apr 27 
18:09:02 2018
@@ -71,7 +71,7 @@ public interface MenuListener {
      * @param menu The source of the event.
      * @param index Where the menu section was inserted.
      */
-    default public void sectionInserted(Menu menu, int index) {
+    default void sectionInserted(Menu menu, int index) {
     }
 
     /**
@@ -81,7 +81,7 @@ public interface MenuListener {
      * @param index The starting index of the removal.
      * @param removed The actual menu sections that were removed from the menu.
      */
-    default public void sectionsRemoved(Menu menu, int index, 
Sequence<Menu.Section> removed) {
+    default void sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> 
removed) {
     }
 
     /**
@@ -90,6 +90,6 @@ public interface MenuListener {
      * @param menu The menu that changed.
      * @param previousActiveItem What the previously active menu item was.
      */
-    default public void activeItemChanged(Menu menu, Menu.Item 
previousActiveItem) {
+    default void activeItemChanged(Menu menu, Menu.Item previousActiveItem) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuPopupStateListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuPopupStateListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuPopupStateListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/MenuPopupStateListener.java Fri 
Apr 27 18:09:02 2018
@@ -78,7 +78,7 @@ public interface MenuPopupStateListener
      * @param immediate Whether the close is meant to be immediate.
      * @return The verdict as to whether to close from this listener.
      */
-    default public Vote previewMenuPopupClose(MenuPopup menuPopup, boolean 
immediate) {
+    default Vote previewMenuPopupClose(MenuPopup menuPopup, boolean immediate) 
{
         return Vote.APPROVE;
     }
 
@@ -88,7 +88,7 @@ public interface MenuPopupStateListener
      * @param menuPopup The source of the event.
      * @param reason The accumulated vote that caused the veto.
      */
-    default public void menuPopupCloseVetoed(MenuPopup menuPopup, Vote reason) 
{
+    default void menuPopupCloseVetoed(MenuPopup menuPopup, Vote reason) {
     }
 
     /**
@@ -96,6 +96,6 @@ public interface MenuPopupStateListener
      *
      * @param menuPopup The menu popup that closed.
      */
-    default public void menuPopupClosed(MenuPopup menuPopup) {
+    default void menuPopupClosed(MenuPopup menuPopup) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/MeterListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/MeterListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/MeterListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/MeterListener.java Fri Apr 27 
18:09:02 2018
@@ -71,7 +71,7 @@ public interface MeterListener {
      * @param meter The meter that is changing.
      * @param previousPercentage What the meter's percentage value used to be.
      */
-    default public void percentageChanged(Meter meter, double 
previousPercentage) {
+    default void percentageChanged(Meter meter, double previousPercentage) {
     }
 
     /**
@@ -80,7 +80,7 @@ public interface MeterListener {
      * @param meter The meter that has changed.
      * @param previousText The previous meter text.
      */
-    default public void textChanged(Meter meter, String previousText) {
+    default void textChanged(Meter meter, String previousText) {
     }
 
     /**
@@ -88,6 +88,6 @@ public interface MeterListener {
      *
      * @param meter The source of the event.
      */
-    default public void orientationChanged(Meter meter) {
+    default void orientationChanged(Meter meter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/NumberRulerListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/NumberRulerListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/NumberRulerListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/NumberRulerListener.java Fri Apr 
27 18:09:02 2018
@@ -60,7 +60,7 @@ public interface NumberRulerListener {
      *
      * @param ruler The component that has changed.
      */
-    default public void orientationChanged(NumberRuler ruler) {
+    default void orientationChanged(NumberRuler ruler) {
     }
 
     /**
@@ -70,6 +70,6 @@ public interface NumberRulerListener {
      * @param ruler The component that has changed.
      * @param previousSize The previous value of the size.
      */
-    default public void textSizeChanged(NumberRuler ruler, int previousSize) {
+    default void textSizeChanged(NumberRuler ruler, int previousSize) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/PromptListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/PromptListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/PromptListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/PromptListener.java Fri Apr 27 
18:09:02 2018
@@ -101,7 +101,7 @@ public interface PromptListener {
      * @param prompt The prompt object that has been changed.
      * @param previousMessageType The message type before the change.
      */
-    default public void messageTypeChanged(Prompt prompt, MessageType 
previousMessageType) {
+    default void messageTypeChanged(Prompt prompt, MessageType 
previousMessageType) {
     }
 
     /**
@@ -110,7 +110,7 @@ public interface PromptListener {
      * @param prompt The prompt whose message has changed.
      * @param previousMessage What the message used to be.
      */
-    default public void messageChanged(Prompt prompt, String previousMessage) {
+    default void messageChanged(Prompt prompt, String previousMessage) {
     }
 
     /**
@@ -119,7 +119,7 @@ public interface PromptListener {
      * @param prompt The prompt that has changed.
      * @param previousBody What the body of this prompt used to be.
      */
-    default public void bodyChanged(Prompt prompt, Component previousBody) {
+    default void bodyChanged(Prompt prompt, Component previousBody) {
     }
 
     /**
@@ -128,7 +128,7 @@ public interface PromptListener {
      * @param prompt The prompt whose options have changed.
      * @param index The location where the new option was inserted.
      */
-    default public void optionInserted(Prompt prompt, int index) {
+    default void optionInserted(Prompt prompt, int index) {
     }
 
     /**
@@ -138,7 +138,7 @@ public interface PromptListener {
      * @param index The starting location of the removed options.
      * @param removed The actual sequence of options removed.
      */
-    default public void optionsRemoved(Prompt prompt, int index, Sequence<?> 
removed) {
+    default void optionsRemoved(Prompt prompt, int index, Sequence<?> removed) 
{
     }
 
     /**
@@ -147,6 +147,6 @@ public interface PromptListener {
      * @param prompt The prompt that changed.
      * @param previousSelectedOption The option that used to be the selected 
one.
      */
-    default public void selectedOptionChanged(Prompt prompt, int 
previousSelectedOption) {
+    default void selectedOptionChanged(Prompt prompt, int 
previousSelectedOption) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupListener.java Fri Apr 27 
18:09:02 2018
@@ -72,7 +72,7 @@ public interface RollupListener {
      * @param rollup The rollup whose heading changed.
      * @param previousHeading What the heading used to be.
      */
-    default public void headingChanged(Rollup rollup, Component 
previousHeading) {
+    default void headingChanged(Rollup rollup, Component previousHeading) {
     }
 
     /**
@@ -81,7 +81,7 @@ public interface RollupListener {
      * @param rollup The rollup that has new content.
      * @param previousContent What the content used to be.
      */
-    default public void contentChanged(Rollup rollup, Component 
previousContent) {
+    default void contentChanged(Rollup rollup, Component previousContent) {
     }
 
     /**
@@ -89,6 +89,6 @@ public interface RollupListener {
      *
      * @param rollup The rollup that changed.
      */
-    default public void collapsibleChanged(Rollup rollup) {
+    default void collapsibleChanged(Rollup rollup) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupStateListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupStateListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupStateListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/RollupStateListener.java Fri Apr 
27 18:09:02 2018
@@ -78,7 +78,7 @@ public interface RollupStateListener {
      * @param rollup The rollup that might change.
      * @return The result of this listener voting on the expansion.
      */
-    default public Vote previewExpandedChange(Rollup rollup) {
+    default Vote previewExpandedChange(Rollup rollup) {
         return Vote.APPROVE;
     }
 
@@ -88,7 +88,7 @@ public interface RollupStateListener {
      * @param rollup The rollup that didn't change.
      * @param reason The reason the expansion was vetoed.
      */
-    default public void expandedChangeVetoed(Rollup rollup, Vote reason) {
+    default void expandedChangeVetoed(Rollup rollup, Vote reason) {
     }
 
     /**
@@ -96,6 +96,6 @@ public interface RollupStateListener {
      *
      * @param rollup The rollup that did change.
      */
-    default public void expandedChanged(Rollup rollup) {
+    default void expandedChanged(Rollup rollup) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollBarListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollBarListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollBarListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollBarListener.java Fri Apr 27 
18:09:02 2018
@@ -82,7 +82,7 @@ public interface ScrollBarListener {
      * @param scrollBar The scroll bar that changed orientation.
      * @param previousOrientation The previous orientation.
      */
-    default public void orientationChanged(ScrollBar scrollBar, Orientation 
previousOrientation) {
+    default void orientationChanged(ScrollBar scrollBar, Orientation 
previousOrientation) {
     }
 
     /**
@@ -93,7 +93,7 @@ public interface ScrollBarListener {
      * @param previousEnd The previous end value.
      * @param previousExtent The previous scroll bar extent value.
      */
-    default public void scopeChanged(ScrollBar scrollBar, int previousStart, 
int previousEnd,
+    default void scopeChanged(ScrollBar scrollBar, int previousStart, int 
previousEnd,
         int previousExtent) {
     }
 
@@ -103,7 +103,7 @@ public interface ScrollBarListener {
      * @param scrollBar The scroll bar that changed.
      * @param previousUnitIncrement The previous unit increment value.
      */
-    default public void unitIncrementChanged(ScrollBar scrollBar, int 
previousUnitIncrement) {
+    default void unitIncrementChanged(ScrollBar scrollBar, int 
previousUnitIncrement) {
     }
 
     /**
@@ -112,6 +112,6 @@ public interface ScrollBarListener {
      * @param scrollBar The scroll bar that changed.
      * @param previousBlockIncrement The previous block increment value.
      */
-    default public void blockIncrementChanged(ScrollBar scrollBar, int 
previousBlockIncrement) {
+    default void blockIncrementChanged(ScrollBar scrollBar, int 
previousBlockIncrement) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollPaneListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollPaneListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ScrollPaneListener.java Fri Apr 27 
18:09:02 2018
@@ -100,7 +100,7 @@ public interface ScrollPaneListener {
      * @param scrollPane The source of the event.
      * @param previousPolicy The previous horizontal scroll bar policy.
      */
-    default public void horizontalScrollBarPolicyChanged(ScrollPane scrollPane,
+    default void horizontalScrollBarPolicyChanged(ScrollPane scrollPane,
         ScrollBarPolicy previousPolicy) {
     }
 
@@ -110,7 +110,7 @@ public interface ScrollPaneListener {
      * @param scrollPane The source of the event.
      * @param previousPolicy The previous vertical scroll bar policy.
      */
-    default public void verticalScrollBarPolicyChanged(ScrollPane scrollPane,
+    default void verticalScrollBarPolicyChanged(ScrollPane scrollPane,
         ScrollBarPolicy previousPolicy) {
     }
 
@@ -120,7 +120,7 @@ public interface ScrollPaneListener {
      * @param scrollPane The source of the event.
      * @param previousRowHeader The previous row header for this scroll pane.
      */
-    default public void rowHeaderChanged(ScrollPane scrollPane, Component 
previousRowHeader) {
+    default void rowHeaderChanged(ScrollPane scrollPane, Component 
previousRowHeader) {
     }
 
     /**
@@ -129,7 +129,7 @@ public interface ScrollPaneListener {
      * @param scrollPane The source of the event.
      * @param previousColumnHeader The previous column header for this scroll 
pane.
      */
-    default public void columnHeaderChanged(ScrollPane scrollPane, Component 
previousColumnHeader) {
+    default void columnHeaderChanged(ScrollPane scrollPane, Component 
previousColumnHeader) {
     }
 
     /**
@@ -138,6 +138,6 @@ public interface ScrollPaneListener {
      * @param scrollPane The source of the event.
      * @param previousCorner The previous corner component.
      */
-    default public void cornerChanged(ScrollPane scrollPane, Component 
previousCorner) {
+    default void cornerChanged(ScrollPane scrollPane, Component 
previousCorner) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetCloseListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetCloseListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetCloseListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetCloseListener.java Fri Apr 27 
18:09:02 2018
@@ -25,6 +25,6 @@ public interface SheetCloseListener {
      *
      * @param sheet The sheet that is now closed.
      */
-    default public void sheetClosed(Sheet sheet) {
+    default void sheetClosed(Sheet sheet) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetStateListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetStateListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetStateListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SheetStateListener.java Fri Apr 27 
18:09:02 2018
@@ -78,7 +78,7 @@ public interface SheetStateListener exte
      * @param result The proposed result of the close.
      * @return What this listener wants to decide about this proposed close.
      */
-    default public Vote previewSheetClose(Sheet sheet, boolean result) {
+    default Vote previewSheetClose(Sheet sheet, boolean result) {
         return Vote.APPROVE;
     }
 
@@ -88,6 +88,6 @@ public interface SheetStateListener exte
      * @param sheet The close event source.
      * @param reason The accumulated vote that resulted in the veto.
      */
-    default public void sheetCloseVetoed(Sheet sheet, Vote reason) {
+    default void sheetCloseVetoed(Sheet sheet, Vote reason) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SliderListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SliderListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SliderListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SliderListener.java Fri Apr 27 
18:09:02 2018
@@ -61,7 +61,7 @@ public interface SliderListener {
      * @param previousStart The previous start of the slider's range.
      * @param previousEnd The previous end value.
      */
-    default public void rangeChanged(Slider slider, int previousStart, int 
previousEnd) {
+    default void rangeChanged(Slider slider, int previousStart, int 
previousEnd) {
     }
 
     /**
@@ -69,6 +69,6 @@ public interface SliderListener {
      *
      * @param slider The source of the event.
      */
-    default public void orientationChanged(Slider slider) {
+    default void orientationChanged(Slider slider) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerBindingListener.java Fri 
Apr 27 18:09:02 2018
@@ -107,7 +107,7 @@ public interface SpinnerBindingListener
      * @param spinner The spinner whose data is changing.
      * @param previousSpinnerDataKey The previous key for the spinner's data.
      */
-    default public void spinnerDataKeyChanged(Spinner spinner, String 
previousSpinnerDataKey) {
+    default void spinnerDataKeyChanged(Spinner spinner, String 
previousSpinnerDataKey) {
     }
 
     /**
@@ -116,7 +116,7 @@ public interface SpinnerBindingListener
      * @param spinner The spinner whose data is changing.
      * @param previousSpinnerDataBindType What the data bind type used to be.
      */
-    default public void spinnerDataBindTypeChanged(Spinner spinner, BindType 
previousSpinnerDataBindType) {
+    default void spinnerDataBindTypeChanged(Spinner spinner, BindType 
previousSpinnerDataBindType) {
     }
 
     /**
@@ -125,7 +125,7 @@ public interface SpinnerBindingListener
      * @param spinner The spinner whose data is changing.
      * @param previousSpinnerDataBindMapping What the data bind mapping used 
to be.
      */
-    default public void spinnerDataBindMappingChanged(Spinner spinner,
+    default void spinnerDataBindMappingChanged(Spinner spinner,
         Spinner.SpinnerDataBindMapping previousSpinnerDataBindMapping) {
     }
 
@@ -135,7 +135,7 @@ public interface SpinnerBindingListener
      * @param spinner The spinner that is the source of this event.
      * @param previousSelectedItemKey What the selected item key used to be.
      */
-    default public void selectedItemKeyChanged(Spinner spinner, String 
previousSelectedItemKey) {
+    default void selectedItemKeyChanged(Spinner spinner, String 
previousSelectedItemKey) {
     }
 
     /**
@@ -144,7 +144,7 @@ public interface SpinnerBindingListener
      * @param spinner The spinner whose selected binding has changed.
      * @param previousSelectedItemBindType The previous selected item bind 
type.
      */
-    default public void selectedItemBindTypeChanged(Spinner spinner, BindType 
previousSelectedItemBindType) {
+    default void selectedItemBindTypeChanged(Spinner spinner, BindType 
previousSelectedItemBindType) {
     }
 
     /**
@@ -153,7 +153,7 @@ public interface SpinnerBindingListener
      * @param spinner The spinner whose bind mapping has changed.
      * @param previousSelectedItemBindMapping What the selected item bind 
mapping used to be.
      */
-    default public void selectedItemBindMappingChanged(Spinner spinner,
+    default void selectedItemBindMappingChanged(Spinner spinner,
         Spinner.ItemBindMapping previousSelectedItemBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerItemListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerItemListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerItemListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerItemListener.java Fri Apr 
27 18:09:02 2018
@@ -91,7 +91,7 @@ public interface SpinnerItemListener {
      * @param spinner The source of the event.
      * @param index Where the item was inserted.
      */
-    default public void itemInserted(Spinner spinner, int index) {
+    default void itemInserted(Spinner spinner, int index) {
     }
 
     /**
@@ -101,7 +101,7 @@ public interface SpinnerItemListener {
      * @param index The start of the items that were removed.
      * @param count The number of items removed from there.
      */
-    default public void itemsRemoved(Spinner spinner, int index, int count) {
+    default void itemsRemoved(Spinner spinner, int index, int count) {
     }
 
     /**
@@ -110,7 +110,7 @@ public interface SpinnerItemListener {
      * @param spinner The source of this event.
      * @param index The location of the item that was updated.
      */
-    default public void itemUpdated(Spinner spinner, int index) {
+    default void itemUpdated(Spinner spinner, int index) {
     }
 
     /**
@@ -118,7 +118,7 @@ public interface SpinnerItemListener {
      *
      * @param spinner The source of this event.
      */
-    default public void itemsCleared(Spinner spinner) {
+    default void itemsCleared(Spinner spinner) {
     }
 
     /**
@@ -126,6 +126,6 @@ public interface SpinnerItemListener {
      *
      * @param spinner The source of this event.
      */
-    default public void itemsSorted(Spinner spinner) {
+    default void itemsSorted(Spinner spinner) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerListener.java Fri Apr 27 
18:09:02 2018
@@ -72,7 +72,7 @@ public interface SpinnerListener {
      * @param spinner The source of this event.
      * @param previousSpinnerData What the spinner data used to be.
      */
-    default public void spinnerDataChanged(Spinner spinner, List<?> 
previousSpinnerData) {
+    default void spinnerDataChanged(Spinner spinner, List<?> 
previousSpinnerData) {
     }
 
     /**
@@ -81,7 +81,7 @@ public interface SpinnerListener {
      * @param spinner The source of this event.
      * @param previousItemRenderer What the item renderer used to be.
      */
-    default public void itemRendererChanged(Spinner spinner, 
Spinner.ItemRenderer previousItemRenderer) {
+    default void itemRendererChanged(Spinner spinner, Spinner.ItemRenderer 
previousItemRenderer) {
     }
 
     /**
@@ -89,6 +89,6 @@ public interface SpinnerListener {
      *
      * @param spinner The source of this event.
      */
-    default public void circularChanged(Spinner spinner) {
+    default void circularChanged(Spinner spinner) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SpinnerSelectionListener.java Fri 
Apr 27 18:09:02 2018
@@ -63,7 +63,7 @@ public interface SpinnerSelectionListene
      * the index that was previously selected. Otherwise, contains the current
      * selection.
      */
-    default public void selectedIndexChanged(Spinner spinner, int 
previousSelectedIndex) {
+    default void selectedIndexChanged(Spinner spinner, int 
previousSelectedIndex) {
     }
 
     /**
@@ -73,6 +73,6 @@ public interface SpinnerSelectionListene
      * @param previousSelectedItem The item that was previously selected, or
      * <tt>null</tt> if the previous selection cannot be determined.
      */
-    default public void selectedItemChanged(Spinner spinner, Object 
previousSelectedItem) {
+    default void selectedItemChanged(Spinner spinner, Object 
previousSelectedItem) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SplitPaneListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SplitPaneListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SplitPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SplitPaneListener.java Fri Apr 27 
18:09:02 2018
@@ -111,7 +111,7 @@ public interface SplitPaneListener {
      * @param previousTopLeft The previous component. The new component can be
      * found inside the splitPane.
      */
-    default public void topLeftChanged(SplitPane splitPane, Component 
previousTopLeft) {
+    default void topLeftChanged(SplitPane splitPane, Component 
previousTopLeft) {
     }
 
     /**
@@ -121,7 +121,7 @@ public interface SplitPaneListener {
      * @param previousBottomRight The previous component. The new component can
      * be found inside the splitPane.
      */
-    default public void bottomRightChanged(SplitPane splitPane, Component 
previousBottomRight) {
+    default void bottomRightChanged(SplitPane splitPane, Component 
previousBottomRight) {
     }
 
     /**
@@ -129,7 +129,7 @@ public interface SplitPaneListener {
      *
      * @param splitPane The source of the event.
      */
-    default public void orientationChanged(SplitPane splitPane) {
+    default void orientationChanged(SplitPane splitPane) {
     }
 
     /**
@@ -137,7 +137,7 @@ public interface SplitPaneListener {
      *
      * @param splitPane The source of the event.
      */
-    default public void primaryRegionChanged(SplitPane splitPane) {
+    default void primaryRegionChanged(SplitPane splitPane) {
     }
 
     /**
@@ -146,7 +146,7 @@ public interface SplitPaneListener {
      * @param splitPane The source of the event.
      * @param previousSplitRatio The previous setting of the splitRatio.
      */
-    default public void splitRatioChanged(SplitPane splitPane, float 
previousSplitRatio) {
+    default void splitRatioChanged(SplitPane splitPane, float 
previousSplitRatio) {
     }
 
     /**
@@ -154,7 +154,7 @@ public interface SplitPaneListener {
      *
      * @param splitPane The source of the event.
      */
-    default public void lockedChanged(SplitPane splitPane) {
+    default void lockedChanged(SplitPane splitPane) {
     }
 
     /**
@@ -163,6 +163,6 @@ public interface SplitPaneListener {
      * @param splitPane The source of the event.
      * @param previousResizeMode The previous setting of the resizeMode.
      */
-    default public void resizeModeChanged(SplitPane splitPane, 
SplitPane.ResizeMode previousResizeMode) {
+    default void resizeModeChanged(SplitPane splitPane, SplitPane.ResizeMode 
previousResizeMode) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupCloseListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupCloseListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupCloseListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupCloseListener.java 
Fri Apr 27 18:09:02 2018
@@ -25,6 +25,6 @@ public interface SuggestionPopupCloseLis
      *
      * @param suggestionPopup The suggestion popup that has closed.
      */
-    default public void suggestionPopupClosed(SuggestionPopup suggestionPopup) 
{
+    default void suggestionPopupClosed(SuggestionPopup suggestionPopup) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupItemListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupItemListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupItemListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupItemListener.java 
Fri Apr 27 18:09:02 2018
@@ -91,7 +91,7 @@ public interface SuggestionPopupItemList
      * @param suggestionPopup The source of this event.
      * @param index The location where the item was inserted.
      */
-    default public void itemInserted(SuggestionPopup suggestionPopup, int 
index) {
+    default void itemInserted(SuggestionPopup suggestionPopup, int index) {
     }
 
     /**
@@ -101,7 +101,7 @@ public interface SuggestionPopupItemList
      * @param index The starting index where items were removed.
      * @param count The number of items that were removed.
      */
-    default public void itemsRemoved(SuggestionPopup suggestionPopup, int 
index, int count) {
+    default void itemsRemoved(SuggestionPopup suggestionPopup, int index, int 
count) {
     }
 
     /**
@@ -110,7 +110,7 @@ public interface SuggestionPopupItemList
      * @param suggestionPopup The source of this event.
      * @param index Which item was updated.
      */
-    default public void itemUpdated(SuggestionPopup suggestionPopup, int 
index) {
+    default void itemUpdated(SuggestionPopup suggestionPopup, int index) {
     }
 
     /**
@@ -118,7 +118,7 @@ public interface SuggestionPopupItemList
      *
      * @param suggestionPopup The source of this event.
      */
-    default public void itemsCleared(SuggestionPopup suggestionPopup) {
+    default void itemsCleared(SuggestionPopup suggestionPopup) {
     }
 
     /**
@@ -126,6 +126,6 @@ public interface SuggestionPopupItemList
      *
      * @param suggestionPopup The source of this event.
      */
-    default public void itemsSorted(SuggestionPopup suggestionPopup) {
+    default void itemsSorted(SuggestionPopup suggestionPopup) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupListener.java Fri 
Apr 27 18:09:02 2018
@@ -76,7 +76,7 @@ public interface SuggestionPopupListener
      * @param suggestionPopup The source of this event.
      * @param previousSuggestionData The previous data that was being shown.
      */
-    default public void suggestionDataChanged(SuggestionPopup suggestionPopup,
+    default void suggestionDataChanged(SuggestionPopup suggestionPopup,
         List<?> previousSuggestionData) {
     }
 
@@ -86,7 +86,7 @@ public interface SuggestionPopupListener
      * @param suggestionPopup The source of this event.
      * @param previousSuggestionRenderer The previous item renderer.
      */
-    default public void suggestionRendererChanged(SuggestionPopup 
suggestionPopup,
+    default void suggestionRendererChanged(SuggestionPopup suggestionPopup,
         ListView.ItemRenderer previousSuggestionRenderer) {
     }
 
@@ -96,6 +96,6 @@ public interface SuggestionPopupListener
      * @param suggestionPopup The source of this event.
      * @param previousListSize The previous value of the visible window.
      */
-    default public void listSizeChanged(SuggestionPopup suggestionPopup, int 
previousListSize) {
+    default void listSizeChanged(SuggestionPopup suggestionPopup, int 
previousListSize) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- 
pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupSelectionListener.java 
(original)
+++ 
pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupSelectionListener.java 
Fri Apr 27 18:09:02 2018
@@ -63,7 +63,7 @@ public interface SuggestionPopupSelectio
      * @param suggestionPopup The source of this event.
      * @param previousSelectedIndex What the selected index used to be.
      */
-    default public void selectedIndexChanged(SuggestionPopup suggestionPopup, 
int previousSelectedIndex) {
+    default void selectedIndexChanged(SuggestionPopup suggestionPopup, int 
previousSelectedIndex) {
     }
 
     /**

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupStateListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupStateListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupStateListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/SuggestionPopupStateListener.java 
Fri Apr 27 18:09:02 2018
@@ -78,7 +78,7 @@ public interface SuggestionPopupStateLis
      * @param result What the result would be.
      * @return What this listener thinks about closing the popup with this 
result.
      */
-    default public Vote previewSuggestionPopupClose(SuggestionPopup 
suggestionPopup, boolean result) {
+    default Vote previewSuggestionPopupClose(SuggestionPopup suggestionPopup, 
boolean result) {
         return Vote.APPROVE;
     }
 
@@ -88,6 +88,6 @@ public interface SuggestionPopupStateLis
      * @param suggestionPopup The source of this event.
      * @param reason The accumulated vote that forced the veto.
      */
-    default public void suggestionPopupCloseVetoed(SuggestionPopup 
suggestionPopup, Vote reason) {
+    default void suggestionPopupCloseVetoed(SuggestionPopup suggestionPopup, 
Vote reason) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneAttributeListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneAttributeListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneAttributeListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneAttributeListener.java Fri 
Apr 27 18:09:02 2018
@@ -64,7 +64,7 @@ public interface TabPaneAttributeListene
      * @param component The component whose tab pane data has changed.
      * @param previousTabData What the tab data attribute used to be.
      */
-    default public void tabDataChanged(TabPane tabPane, Component component, 
Object previousTabData) {
+    default void tabDataChanged(TabPane tabPane, Component component, Object 
previousTabData) {
     }
 
     /**
@@ -74,6 +74,6 @@ public interface TabPaneAttributeListene
      * @param component The actual tab component whose tooltip was changed.
      * @param previousTooltipText What the text used to be.
      */
-    default public void tooltipTextChanged(TabPane tabPane, Component 
component, String previousTooltipText) {
+    default void tooltipTextChanged(TabPane tabPane, Component component, 
String previousTooltipText) {
     }
 }


Reply via email to