Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneListener.java Fri Apr 27 
18:09:02 2018
@@ -129,7 +129,7 @@ public interface TabPaneListener {
      * @param tabPane The source of this event.
      * @param index Where the newly inserted tab was placed.
      */
-    default public void tabInserted(TabPane tabPane, int index) {
+    default void tabInserted(TabPane tabPane, int index) {
     }
 
     /**
@@ -140,7 +140,7 @@ public interface TabPaneListener {
      * @param count The count of tabs to remove.
      * @return Whether or not to accept this tab removal (or defer it).
      */
-    default public Vote previewRemoveTabs(TabPane tabPane, int index, int 
count) {
+    default Vote previewRemoveTabs(TabPane tabPane, int index, int count) {
         return Vote.APPROVE;
     }
 
@@ -150,7 +150,7 @@ public interface TabPaneListener {
      * @param tabPane The source of this event.
      * @param reason The vote result that vetoed the tab removal.
      */
-    default public void removeTabsVetoed(TabPane tabPane, Vote reason) {
+    default void removeTabsVetoed(TabPane tabPane, Vote reason) {
     }
 
     /**
@@ -160,7 +160,7 @@ public interface TabPaneListener {
      * @param index The starting location of the tabs that were removed.
      * @param tabs The actual sequence of tab components that were removed.
      */
-    default public void tabsRemoved(TabPane tabPane, int index, 
Sequence<Component> tabs) {
+    default void tabsRemoved(TabPane tabPane, int index, Sequence<Component> 
tabs) {
     }
 
     /**
@@ -169,7 +169,7 @@ public interface TabPaneListener {
      * @param tabPane The component that changed.
      * @param previousCorner What the corner component used to be.
      */
-    default public void cornerChanged(TabPane tabPane, Component 
previousCorner) {
+    default void cornerChanged(TabPane tabPane, Component previousCorner) {
     }
 
     /**
@@ -178,7 +178,7 @@ public interface TabPaneListener {
      * @param tabPane The source of this event.
      * @param previousTabDataRenderer The previous renderer for the tab data.
      */
-    default public void tabDataRendererChanged(TabPane tabPane,
+    default void tabDataRendererChanged(TabPane tabPane,
         Button.DataRenderer previousTabDataRenderer) {
     }
 
@@ -187,7 +187,7 @@ public interface TabPaneListener {
      *
      * @param tabPane The component that changed.
      */
-    default public void closeableChanged(TabPane tabPane) {
+    default void closeableChanged(TabPane tabPane) {
     }
 
     /**
@@ -195,6 +195,6 @@ public interface TabPaneListener {
      *
      * @param tabPane The source of this event.
      */
-    default public void collapsibleChanged(TabPane tabPane) {
+    default void collapsibleChanged(TabPane tabPane) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TabPaneSelectionListener.java Fri 
Apr 27 18:09:02 2018
@@ -78,7 +78,7 @@ public interface TabPaneSelectionListene
      * @param selectedIndex The index that will be selected.
      * @return The vote result as to whether to accept this selected index 
change.
      */
-    default public Vote previewSelectedIndexChange(TabPane tabPane, int 
selectedIndex) {
+    default Vote previewSelectedIndexChange(TabPane tabPane, int 
selectedIndex) {
         return Vote.APPROVE;
     }
 
@@ -88,7 +88,7 @@ public interface TabPaneSelectionListene
      * @param tabPane The source of the event.
      * @param reason The reason the event was vetoed.
      */
-    default public void selectedIndexChangeVetoed(TabPane tabPane, Vote 
reason) {
+    default void selectedIndexChangeVetoed(TabPane tabPane, Vote reason) {
     }
 
     /**
@@ -99,6 +99,6 @@ public interface TabPaneSelectionListene
      * the index that was previously selected. Otherwise, contains the current
      * selection.
      */
-    default public void selectedIndexChanged(TabPane tabPane, int 
previousSelectedIndex) {
+    default void selectedIndexChanged(TabPane tabPane, int 
previousSelectedIndex) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneAttributeListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneAttributeListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneAttributeListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneAttributeListener.java 
Fri Apr 27 18:09:02 2018
@@ -63,7 +63,7 @@ public interface TablePaneAttributeListe
      * @param component The component that changed.
      * @param previousRowSpan What the row span value used to be.
      */
-    default public void rowSpanChanged(TablePane tablePane, Component 
component, int previousRowSpan) {
+    default void rowSpanChanged(TablePane tablePane, Component component, int 
previousRowSpan) {
     }
 
     /**
@@ -73,6 +73,6 @@ public interface TablePaneAttributeListe
      * @param component THe component that changed.
      * @param previousColumnSpan What the column span for this component used 
to be.
      */
-    default public void columnSpanChanged(TablePane tablePane, Component 
component, int previousColumnSpan) {
+    default void columnSpanChanged(TablePane tablePane, Component component, 
int previousColumnSpan) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePaneListener.java Fri Apr 27 
18:09:02 2018
@@ -155,7 +155,7 @@ public interface TablePaneListener {
      * @param tablePane The source of this event.
      * @param index The index of the inserted row.
      */
-    default public void rowInserted(TablePane tablePane, int index) {
+    default void rowInserted(TablePane tablePane, int index) {
     }
 
     /**
@@ -165,7 +165,7 @@ public interface TablePaneListener {
      * @param index The starting index of the rows that were removed.
      * @param rows The actual sequence of rows that were removed.
      */
-    default public void rowsRemoved(TablePane tablePane, int index, 
Sequence<TablePane.Row> rows) {
+    default void rowsRemoved(TablePane tablePane, int index, 
Sequence<TablePane.Row> rows) {
     }
 
     /**
@@ -175,7 +175,7 @@ public interface TablePaneListener {
      * @param previousHeight The previous numeric height value.
      * @param previousRelative Whether the previous row height was relative or 
not.
      */
-    default public void rowHeightChanged(TablePane.Row row, int 
previousHeight, boolean previousRelative) {
+    default void rowHeightChanged(TablePane.Row row, int previousHeight, 
boolean previousRelative) {
     }
 
     /**
@@ -183,7 +183,7 @@ public interface TablePaneListener {
      *
      * @param row The source of this event.
      */
-    default public void rowHighlightedChanged(TablePane.Row row) {
+    default void rowHighlightedChanged(TablePane.Row row) {
     }
 
     /**
@@ -192,7 +192,7 @@ public interface TablePaneListener {
      * @param tablePane The table pane that changed.
      * @param index The location where the column was inserted.
      */
-    default public void columnInserted(TablePane tablePane, int index) {
+    default void columnInserted(TablePane tablePane, int index) {
     }
 
     /**
@@ -202,7 +202,7 @@ public interface TablePaneListener {
      * @param index The starting index of the removed columns.
      * @param columns The actual sequence of the columns that were removed.
      */
-    default public void columnsRemoved(TablePane tablePane, int index, 
Sequence<TablePane.Column> columns) {
+    default void columnsRemoved(TablePane tablePane, int index, 
Sequence<TablePane.Column> columns) {
     }
 
     /**
@@ -212,7 +212,7 @@ public interface TablePaneListener {
      * @param previousWidth The previous numeric value of the width.
      * @param previousRelative Whether the previous width was relative or not.
      */
-    default public void columnWidthChanged(TablePane.Column column, int 
previousWidth,
+    default void columnWidthChanged(TablePane.Column column, int previousWidth,
         boolean previousRelative) {
     }
 
@@ -221,7 +221,7 @@ public interface TablePaneListener {
      *
      * @param column The column that changed.
      */
-    default public void columnHighlightedChanged(TablePane.Column column) {
+    default void columnHighlightedChanged(TablePane.Column column) {
     }
 
     /**
@@ -230,7 +230,7 @@ public interface TablePaneListener {
      * @param row The table pane row that has changed.
      * @param column The index of the new column.
      */
-    default public void cellInserted(TablePane.Row row, int column) {
+    default void cellInserted(TablePane.Row row, int column) {
     }
 
     /**
@@ -240,7 +240,7 @@ public interface TablePaneListener {
      * @param column The starting index of the column(s) that were removed.
      * @param removed The actual sequence of removed columns.
      */
-    default public void cellsRemoved(TablePane.Row row, int column, 
Sequence<Component> removed) {
+    default void cellsRemoved(TablePane.Row row, int column, 
Sequence<Component> removed) {
     }
 
     /**
@@ -250,6 +250,6 @@ public interface TablePaneListener {
      * @param column Index of the column that was updated.
      * @param previousComponent The previous cell contents.
      */
-    default public void cellUpdated(TablePane.Row row, int column, Component 
previousComponent) {
+    default void cellUpdated(TablePane.Row row, int column, Component 
previousComponent) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java Fri 
Apr 27 18:09:02 2018
@@ -141,7 +141,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousTableDataKey The previous key for the table data.
      */
-    default public void tableDataKeyChanged(TableView tableView, String 
previousTableDataKey) {
+    default void tableDataKeyChanged(TableView tableView, String 
previousTableDataKey) {
     }
 
     /**
@@ -150,7 +150,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousTableDataBindType The previous bind type for the table 
data.
      */
-    default public void tableDataBindTypeChanged(TableView tableView, BindType 
previousTableDataBindType) {
+    default void tableDataBindTypeChanged(TableView tableView, BindType 
previousTableDataBindType) {
     }
 
     /**
@@ -159,7 +159,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousTableDataBindMapping The previous bind mapping for the 
table data.
      */
-    default public void tableDataBindMappingChanged(TableView tableView,
+    default void tableDataBindMappingChanged(TableView tableView,
         TableView.TableDataBindMapping previousTableDataBindMapping) {
     }
 
@@ -169,7 +169,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousSelectedRowKey The previous key for the selected row.
      */
-    default public void selectedRowKeyChanged(TableView tableView, String 
previousSelectedRowKey) {
+    default void selectedRowKeyChanged(TableView tableView, String 
previousSelectedRowKey) {
     }
 
     /**
@@ -178,7 +178,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousSelectedRowBindType The previous bind type for the 
selected row.
      */
-    default public void selectedRowBindTypeChanged(TableView tableView, 
BindType previousSelectedRowBindType) {
+    default void selectedRowBindTypeChanged(TableView tableView, BindType 
previousSelectedRowBindType) {
     }
 
     /**
@@ -187,7 +187,7 @@ public interface TableViewBindingListene
      * @param tableView The source of the event.
      * @param previousSelectedRowBindMapping The previous bind mapping for the 
selected row.
      */
-    default public void selectedRowBindMappingChanged(TableView tableView,
+    default void selectedRowBindMappingChanged(TableView tableView,
         TableView.SelectedRowBindMapping previousSelectedRowBindMapping) {
     }
 
@@ -197,7 +197,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousSelectedRowsKey The previous key for obtaining the 
selected rows value.
      */
-    default public void selectedRowsKeyChanged(TableView tableView, String 
previousSelectedRowsKey) {
+    default void selectedRowsKeyChanged(TableView tableView, String 
previousSelectedRowsKey) {
     }
 
     /**
@@ -206,7 +206,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousSelectedRowsBindType The previous bind type for the 
selected rows.
      */
-    default public void selectedRowsBindTypeChanged(TableView tableView,
+    default void selectedRowsBindTypeChanged(TableView tableView,
         BindType previousSelectedRowsBindType) {
     }
 
@@ -216,7 +216,7 @@ public interface TableViewBindingListene
      * @param tableView The source of this event.
      * @param previousSelectedRowsBindMapping The previous value of the bind 
mapping for the selected rows.
      */
-    default public void selectedRowsBindMappingChanged(TableView tableView,
+    default void selectedRowsBindMappingChanged(TableView tableView,
         TableView.SelectedRowBindMapping previousSelectedRowsBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java Fri 
Apr 27 18:09:02 2018
@@ -142,7 +142,7 @@ public interface TableViewColumnListener
      * @param tableView The table view that has changed.
      * @param index Where the new column has been inserted.
      */
-    default public void columnInserted(TableView tableView, int index) {
+    default void columnInserted(TableView tableView, int index) {
     }
 
     /**
@@ -152,7 +152,7 @@ public interface TableViewColumnListener
      * @param index The starting location of the removed columns.
      * @param columns The actual sequence of columns that were removed.
      */
-    default public void columnsRemoved(TableView tableView, int index, 
Sequence<TableView.Column> columns) {
+    default void columnsRemoved(TableView tableView, int index, 
Sequence<TableView.Column> columns) {
     }
 
     /**
@@ -161,7 +161,7 @@ public interface TableViewColumnListener
      * @param column The column that changed names.
      * @param previousName What the previous name was.
      */
-    default public void columnNameChanged(TableView.Column column, String 
previousName) {
+    default void columnNameChanged(TableView.Column column, String 
previousName) {
     }
 
     /**
@@ -170,7 +170,7 @@ public interface TableViewColumnListener
      * @param column The column that changed.
      * @param previousHeaderData What the header data used to be.
      */
-    default public void columnHeaderDataChanged(TableView.Column column, 
Object previousHeaderData) {
+    default void columnHeaderDataChanged(TableView.Column column, Object 
previousHeaderData) {
     }
 
     /**
@@ -179,7 +179,7 @@ public interface TableViewColumnListener
      * @param column The column whose header data renderer has changed.
      * @param previousHeaderDataRenderer The previous renderer for header data.
      */
-    default public void columnHeaderDataRendererChanged(TableView.Column 
column,
+    default void columnHeaderDataRendererChanged(TableView.Column column,
         TableView.HeaderDataRenderer previousHeaderDataRenderer) {
     }
 
@@ -190,7 +190,7 @@ public interface TableViewColumnListener
      * @param previousWidth The previous numeric value of the column width.
      * @param previousRelative Whether the previous width was relative or not.
      */
-    default public void columnWidthChanged(TableView.Column column, int 
previousWidth,
+    default void columnWidthChanged(TableView.Column column, int previousWidth,
         boolean previousRelative) {
     }
 
@@ -201,7 +201,7 @@ public interface TableViewColumnListener
      * @param previousMinimumWidth The previous minimum column width.
      * @param previousMaximumWidth The previous maximum column width.
      */
-    default public void columnWidthLimitsChanged(TableView.Column column, int 
previousMinimumWidth,
+    default void columnWidthLimitsChanged(TableView.Column column, int 
previousMinimumWidth,
         int previousMaximumWidth) {
     }
 
@@ -211,7 +211,7 @@ public interface TableViewColumnListener
      * @param column The source of this event.
      * @param previousFilter The previous filter value for this column.
      */
-    default public void columnFilterChanged(TableView.Column column, Object 
previousFilter) {
+    default void columnFilterChanged(TableView.Column column, Object 
previousFilter) {
     }
 
     /**
@@ -220,7 +220,7 @@ public interface TableViewColumnListener
      * @param column The source of this event.
      * @param previousCellRenderer The previous cell renderer for this column.
      */
-    default public void columnCellRendererChanged(TableView.Column column,
+    default void columnCellRendererChanged(TableView.Column column,
         TableView.CellRenderer previousCellRenderer) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java Fri 
Apr 27 18:09:02 2018
@@ -62,7 +62,7 @@ public interface TableViewHeaderListener
      * @param tableViewHeader The source of this event.
      * @param previousTableView The table view that used to be associated with 
this header.
      */
-    default public void tableViewChanged(TableViewHeader tableViewHeader, 
TableView previousTableView) {
+    default void tableViewChanged(TableViewHeader tableViewHeader, TableView 
previousTableView) {
     }
 
     /**
@@ -71,6 +71,6 @@ public interface TableViewHeaderListener
      * @param tableViewHeader The source of this event.
      * @param previousSortMode The previous sort mode for this header.
      */
-    default public void sortModeChanged(TableViewHeader tableViewHeader, 
SortMode previousSortMode) {
+    default void sortModeChanged(TableViewHeader tableViewHeader, SortMode 
previousSortMode) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java Fri Apr 27 
18:09:02 2018
@@ -94,7 +94,7 @@ public interface TableViewListener {
      * @param tableView The source of this event.
      * @param previousTableData The previous data list for this table view.
      */
-    default public void tableDataChanged(TableView tableView, List<?> 
previousTableData) {
+    default void tableDataChanged(TableView tableView, List<?> 
previousTableData) {
     }
 
     /**
@@ -103,7 +103,7 @@ public interface TableViewListener {
      * @param tableView The source of this event.
      * @param previousColumnSource The previous column source for this table.
      */
-    default public void columnSourceChanged(TableView tableView, TableView 
previousColumnSource) {
+    default void columnSourceChanged(TableView tableView, TableView 
previousColumnSource) {
     }
 
     /**
@@ -112,7 +112,7 @@ public interface TableViewListener {
      * @param tableView The source of this event.
      * @param previousRowEditor The row editor that was previously used.
      */
-    default public void rowEditorChanged(TableView tableView, 
TableView.RowEditor previousRowEditor) {
+    default void rowEditorChanged(TableView tableView, TableView.RowEditor 
previousRowEditor) {
     }
 
     /**
@@ -121,7 +121,7 @@ public interface TableViewListener {
      * @param tableView The source of the event.
      * @param previousSelectMode What the select mode used to be.
      */
-    default public void selectModeChanged(TableView tableView, 
TableView.SelectMode previousSelectMode) {
+    default void selectModeChanged(TableView tableView, TableView.SelectMode 
previousSelectMode) {
     }
 
     /**
@@ -130,6 +130,6 @@ public interface TableViewListener {
      * @param tableView The table view in question.
      * @param previousDisabledRowFilter What the previous filter for disabled 
rows was.
      */
-    default public void disabledRowFilterChanged(TableView tableView, 
Filter<?> previousDisabledRowFilter) {
+    default void disabledRowFilterChanged(TableView tableView, Filter<?> 
previousDisabledRowFilter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewRowListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewRowListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewRowListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewRowListener.java Fri Apr 
27 18:09:02 2018
@@ -91,7 +91,7 @@ public interface TableViewRowListener {
      * @param tableView The source of the event.
      * @param index The index of the row that was inserted.
      */
-    default public void rowInserted(TableView tableView, int index) {
+    default void rowInserted(TableView tableView, int index) {
     }
 
     /**
@@ -102,7 +102,7 @@ public interface TableViewRowListener {
      * @param count The number of rows that were removed, or <tt>-1</tt> if all
      * rows were removed.
      */
-    default public void rowsRemoved(TableView tableView, int index, int count) 
{
+    default void rowsRemoved(TableView tableView, int index, int count) {
     }
 
     /**
@@ -111,7 +111,7 @@ public interface TableViewRowListener {
      * @param tableView The source of the event.
      * @param index The first index affected by the event.
      */
-    default public void rowUpdated(TableView tableView, int index) {
+    default void rowUpdated(TableView tableView, int index) {
     }
 
     /**
@@ -119,7 +119,7 @@ public interface TableViewRowListener {
      *
      * @param tableView The source of the event.
      */
-    default public void rowsCleared(TableView tableView) {
+    default void rowsCleared(TableView tableView) {
     }
 
     /**
@@ -127,6 +127,6 @@ public interface TableViewRowListener {
      *
      * @param tableView The source of the event.
      */
-    default public void rowsSorted(TableView tableView) {
+    default void rowsSorted(TableView tableView) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java 
Fri Apr 27 18:09:02 2018
@@ -83,7 +83,7 @@ public interface TableViewSelectionListe
      * @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(TableView tableView, int 
rangeStart, int rangeEnd) {
+    default void selectedRangeAdded(TableView tableView, int rangeStart, int 
rangeEnd) {
     }
 
     /**
@@ -94,7 +94,7 @@ public interface TableViewSelectionListe
      * inclusive.
      * @param rangeEnd The end index of the range that was removed, inclusive.
      */
-    default public void selectedRangeRemoved(TableView tableView, int 
rangeStart, int rangeEnd) {
+    default void selectedRangeRemoved(TableView tableView, int rangeStart, int 
rangeEnd) {
     }
 
     /**
@@ -106,7 +106,7 @@ public interface TableViewSelectionListe
      * indirectly as a result of a model change, contains the current 
selection.
      * Otherwise, contains <tt>null</tt>.
      */
-    default public void selectedRangesChanged(TableView tableView, 
Sequence<Span> previousSelectedRanges) {
+    default void selectedRangesChanged(TableView tableView, Sequence<Span> 
previousSelectedRanges) {
     }
 
     /**
@@ -115,6 +115,6 @@ public interface TableViewSelectionListe
      * @param tableView The source of the event.
      * @param previousSelectedRow The row that was previously selected.
      */
-    default public void selectedRowChanged(TableView tableView, Object 
previousSelectedRow) {
+    default void selectedRowChanged(TableView tableView, Object 
previousSelectedRow) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java Fri Apr 
27 18:09:02 2018
@@ -83,7 +83,7 @@ public interface TableViewSortListener {
      * @param tableView The source of this event.
      * @param columnName The new column name added to the sort criteria.
      */
-    default public void sortAdded(TableView tableView, String columnName) {
+    default void sortAdded(TableView tableView, String columnName) {
     }
 
     /**
@@ -93,7 +93,7 @@ public interface TableViewSortListener {
      * @param columnName The column that was updated.
      * @param previousSortDirection The previous value of the sort direction 
for this column.
      */
-    default public void sortUpdated(TableView tableView, String columnName,
+    default void sortUpdated(TableView tableView, String columnName,
         SortDirection previousSortDirection) {
     }
 
@@ -104,7 +104,7 @@ public interface TableViewSortListener {
      * @param columnName The column name that was removed from the sort 
criteria.
      * @param sortDirection What the sort direction was for this column.
      */
-    default public void sortRemoved(TableView tableView, String columnName, 
SortDirection sortDirection) {
+    default void sortRemoved(TableView tableView, String columnName, 
SortDirection sortDirection) {
     }
 
     /**
@@ -112,6 +112,6 @@ public interface TableViewSortListener {
      *
      * @param tableView The source of this event.
      */
-    default public void sortChanged(TableView tableView) {
+    default void sortChanged(TableView tableView) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaBindingListener.java Fri 
Apr 27 18:09:02 2018
@@ -73,7 +73,7 @@ public interface TextAreaBindingListener
      * @param textArea The component that has changed.
      * @param previousTextKey What the text key used to be for this component.
      */
-    default public void textKeyChanged(TextArea textArea, String 
previousTextKey) {
+    default void textKeyChanged(TextArea textArea, String previousTextKey) {
     }
 
     /**
@@ -82,7 +82,7 @@ public interface TextAreaBindingListener
      * @param textArea The source of this event.
      * @param previousTextBindType The previous bind type for this component.
      */
-    default public void textBindTypeChanged(TextArea textArea, BindType 
previousTextBindType) {
+    default void textBindTypeChanged(TextArea textArea, BindType 
previousTextBindType) {
     }
 
     /**
@@ -91,7 +91,7 @@ public interface TextAreaBindingListener
      * @param textArea The source of this event.
      * @param previousTextBindMapping The previous bind mapping for this 
component.
      */
-    default public void textBindMappingChanged(TextArea textArea,
+    default void textBindMappingChanged(TextArea textArea,
         TextArea.TextBindMapping previousTextBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java Fri 
Apr 27 18:09:02 2018
@@ -75,7 +75,7 @@ public interface TextAreaContentListener
      * @param textArea The source of the event.
      * @param index The index at which the paragraph was inserted.
      */
-    default public void paragraphInserted(TextArea textArea, int index) {
+    default void paragraphInserted(TextArea textArea, int index) {
     }
 
     /**
@@ -86,7 +86,7 @@ public interface TextAreaContentListener
      * @param index The starting index from which the paragraphs were removed.
      * @param removed The paragraphs that were removed.
      */
-    default public void paragraphsRemoved(TextArea textArea, int index, 
Sequence<TextArea.Paragraph> removed) {
+    default void paragraphsRemoved(TextArea textArea, int index, 
Sequence<TextArea.Paragraph> removed) {
     }
 
     /**
@@ -94,6 +94,6 @@ public interface TextAreaContentListener
      *
      * @param textArea The source of the event.
      */
-    default public void textChanged(TextArea textArea) {
+    default void textChanged(TextArea textArea) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java Fri Apr 27 
18:09:02 2018
@@ -60,7 +60,7 @@ public interface TextAreaListener {
      * @param textArea The source of this event.
      * @param previousMaximumLength What the maximum length used to be.
      */
-    default public void maximumLengthChanged(TextArea textArea, int 
previousMaximumLength) {
+    default void maximumLengthChanged(TextArea textArea, int 
previousMaximumLength) {
     }
 
     /**
@@ -68,6 +68,6 @@ public interface TextAreaListener {
      *
      * @param textArea The source of this event.
      */
-    default public void editableChanged(TextArea textArea) {
+    default void editableChanged(TextArea textArea) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputBindingListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputBindingListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputBindingListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputBindingListener.java Fri 
Apr 27 18:09:02 2018
@@ -74,7 +74,7 @@ public interface TextInputBindingListene
      * @param textInput The source of this event.
      * @param previousTextKey The previous text key for the component.
      */
-    default public void textKeyChanged(TextInput textInput, String 
previousTextKey) {
+    default void textKeyChanged(TextInput textInput, String previousTextKey) {
     }
 
     /**
@@ -83,7 +83,7 @@ public interface TextInputBindingListene
      * @param textInput The source of this event.
      * @param previousTextBindType The previous bind type for this component.
      */
-    default public void textBindTypeChanged(TextInput textInput, BindType 
previousTextBindType) {
+    default void textBindTypeChanged(TextInput textInput, BindType 
previousTextBindType) {
     }
 
     /**
@@ -92,7 +92,7 @@ public interface TextInputBindingListene
      * @param textInput The source of this event.
      * @param previousTextBindMapping The previous bind mapping for this 
component.
      */
-    default public void textBindMappingChanged(TextInput textInput,
+    default void textBindMappingChanged(TextInput textInput,
         TextInput.TextBindMapping previousTextBindMapping) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java Fri 
Apr 27 18:09:02 2018
@@ -124,7 +124,7 @@ public interface TextInputContentListene
      * @param index The index at which the text will be inserted.
      * @return The accumulated vote as to whether to allow this insertion.
      */
-    default public Vote previewInsertText(TextInput textInput, CharSequence 
text, int index) {
+    default Vote previewInsertText(TextInput textInput, CharSequence text, int 
index) {
         return Vote.APPROVE;
     }
 
@@ -134,7 +134,7 @@ public interface TextInputContentListene
      * @param textInput The source of the event.
      * @param reason The reason the event was vetoed.
      */
-    default public void insertTextVetoed(TextInput textInput, Vote reason) {
+    default void insertTextVetoed(TextInput textInput, Vote reason) {
     }
 
     /**
@@ -144,7 +144,7 @@ public interface TextInputContentListene
      * @param index The index at which the text was inserted.
      * @param count The number of characters that were inserted.
      */
-    default public void textInserted(TextInput textInput, int index, int 
count) {
+    default void textInserted(TextInput textInput, int index, int count) {
     }
 
     /**
@@ -155,7 +155,7 @@ public interface TextInputContentListene
      * @param count The count of characters to be removed starting from that 
index.
      * @return The accumulated vote as to whether to allow this removal.
      */
-    default public Vote previewRemoveText(TextInput textInput, int index, int 
count) {
+    default Vote previewRemoveText(TextInput textInput, int index, int count) {
         return Vote.APPROVE;
     }
 
@@ -165,7 +165,7 @@ public interface TextInputContentListene
      * @param textInput The source of the event.
      * @param reason The reason the event was vetoed.
      */
-    default public void removeTextVetoed(TextInput textInput, Vote reason) {
+    default void removeTextVetoed(TextInput textInput, Vote reason) {
     }
 
     /**
@@ -175,7 +175,7 @@ public interface TextInputContentListene
      * @param index The index from which the text was removed.
      * @param count The number of characters that were removed.
      */
-    default public void textRemoved(TextInput textInput, int index, int count) 
{
+    default void textRemoved(TextInput textInput, int index, int count) {
     }
 
     /**
@@ -183,6 +183,6 @@ public interface TextInputContentListene
      *
      * @param textInput The source of the event.
      */
-    default public void textChanged(TextInput textInput) {
+    default void textChanged(TextInput textInput) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java Fri Apr 27 
18:09:02 2018
@@ -121,7 +121,7 @@ public interface TextInputListener {
      * @param textInput        The source of this event.
      * @param previousTextSize The previous text size for the control
      */
-    default public void textSizeChanged(TextInput textInput, int 
previousTextSize) {
+    default void textSizeChanged(TextInput textInput, int previousTextSize) {
     }
 
     /**
@@ -130,7 +130,7 @@ public interface TextInputListener {
      * @param textInput             The source of this event.
      * @param previousMaximumLength The previous maximum text length.
      */
-    default public void maximumLengthChanged(TextInput textInput, int 
previousMaximumLength) {
+    default void maximumLengthChanged(TextInput textInput, int 
previousMaximumLength) {
     }
 
     /**
@@ -138,7 +138,7 @@ public interface TextInputListener {
      *
      * @param textInput The source of this event.
      */
-    default public void passwordChanged(TextInput textInput) {
+    default void passwordChanged(TextInput textInput) {
     }
 
     /**
@@ -147,7 +147,7 @@ public interface TextInputListener {
      * @param textInput      The source of this event.
      * @param previousPrompt The previous prompt string.
      */
-    default public void promptChanged(TextInput textInput, String 
previousPrompt) {
+    default void promptChanged(TextInput textInput, String previousPrompt) {
     }
 
     /**
@@ -156,7 +156,7 @@ public interface TextInputListener {
      * @param textInput         The source of this event.
      * @param previousValidator The previous validator for the text.
      */
-    default public void textValidatorChanged(TextInput textInput, Validator 
previousValidator) {
+    default void textValidatorChanged(TextInput textInput, Validator 
previousValidator) {
     }
 
     /**
@@ -164,7 +164,7 @@ public interface TextInputListener {
      *
      * @param textInput The text input that has changed.
      */
-    default public void strictValidationChanged(TextInput textInput) {
+    default void strictValidationChanged(TextInput textInput) {
     }
 
     /**
@@ -172,7 +172,7 @@ public interface TextInputListener {
      *
      * @param textInput The text input that has been changed.
      */
-    default public void textValidChanged(TextInput textInput) {
+    default void textValidChanged(TextInput textInput) {
     }
 
     /**
@@ -180,7 +180,7 @@ public interface TextInputListener {
      *
      * @param textInput The text input whose state has changed.
      */
-    default public void editableChanged(TextInput textInput) {
+    default void editableChanged(TextInput textInput) {
     }
 
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputMethodListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputMethodListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputMethodListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputMethodListener.java Fri 
Apr 27 18:09:02 2018
@@ -87,40 +87,40 @@ public interface TextInputMethodListener
         }
     }
 
-    default public AttributedCharacterIterator cancelLatestCommittedText(
+    default AttributedCharacterIterator cancelLatestCommittedText(
         AttributedCharacterIterator.Attribute[] attributes) {
         return null;
     }
 
-    default public AttributedCharacterIterator getCommittedText(int 
beginIndex, int endIndex,
+    default AttributedCharacterIterator getCommittedText(int beginIndex, int 
endIndex,
         AttributedCharacterIterator.Attribute[] attributes) {
         return null;
     }
 
-    default public int getCommittedTextLength() {
+    default int getCommittedTextLength() {
         return 0;
     }
 
-    default public int getInsertPositionOffset() {
+    default int getInsertPositionOffset() {
         return 0;
     }
 
-    default public TextHitInfo getLocationOffset(int x, int y) {
+    default TextHitInfo getLocationOffset(int x, int y) {
         return null;
     }
 
-    default public AttributedCharacterIterator 
getSelectedText(AttributedCharacterIterator.Attribute[] attributes) {
+    default AttributedCharacterIterator 
getSelectedText(AttributedCharacterIterator.Attribute[] attributes) {
         return null;
     }
 
-    default public Rectangle getTextLocation(TextHitInfo offset) {
+    default Rectangle getTextLocation(TextHitInfo offset) {
         return new Rectangle();
     }
 
-    default public void inputMethodTextChanged(InputMethodEvent event) {
+    default void inputMethodTextChanged(InputMethodEvent event) {
     }
 
-    default public void caretPositionChanged(InputMethodEvent event) {
+    default void caretPositionChanged(InputMethodEvent event) {
     }
 
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java 
Fri Apr 27 18:09:02 2018
@@ -46,7 +46,7 @@ public interface TextInputSelectionListe
      * @param previousSelectionLength If the selection changed directly, the
      * previous selection length. Otherwise, the current selection length.
      */
-    default public void selectionChanged(TextInput textInput, int 
previousSelectionStart,
+    default void selectionChanged(TextInput textInput, int 
previousSelectionStart,
         int previousSelectionLength) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java Fri 
Apr 27 18:09:02 2018
@@ -68,7 +68,7 @@ public interface TextPaneCharacterListen
      * @param index    The starting point of the text insertion.
      * @param count    The count of characters inserted there.
      */
-    default public void charactersInserted(TextPane textPane, int index, int 
count) {
+    default void charactersInserted(TextPane textPane, int index, int count) {
     }
 
     /**
@@ -78,6 +78,6 @@ public interface TextPaneCharacterListen
      * @param index    The starting point where text was removed.
      * @param count    Number of characters removed starting from there.
      */
-    default public void charactersRemoved(TextPane textPane, int index, int 
count) {
+    default void charactersRemoved(TextPane textPane, int index, int count) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java Fri Apr 27 
18:09:02 2018
@@ -61,7 +61,7 @@ public interface TextPaneListener {
      * @param textPane         The text pane that changed.
      * @param previousDocument What the document used to be.
      */
-    default public void documentChanged(TextPane textPane, Document 
previousDocument) {
+    default void documentChanged(TextPane textPane, Document previousDocument) 
{
     }
 
     /**
@@ -69,6 +69,6 @@ public interface TextPaneListener {
      *
      * @param textPane The source of this event.
      */
-    default public void editableChanged(TextPane textPane) {
+    default void editableChanged(TextPane textPane) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewBranchListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewBranchListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewBranchListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewBranchListener.java Fri 
Apr 27 18:09:02 2018
@@ -89,7 +89,7 @@ public interface TreeViewBranchListener
      * @param treeView The source of the event.
      * @param path The path of the node that was shown.
      */
-    default public void branchExpanded(TreeView treeView, Path path) {
+    default void branchExpanded(TreeView treeView, Path path) {
     }
 
     /**
@@ -98,7 +98,7 @@ public interface TreeViewBranchListener
      * @param treeView The source of the event.
      * @param path The path of the node that was collapsed.
      */
-    default public void branchCollapsed(TreeView treeView, Path path) {
+    default void branchCollapsed(TreeView treeView, Path path) {
     }
 
     /**
@@ -109,7 +109,7 @@ public interface TreeViewBranchListener
      * @param path The path of the node about to be collapsed or expanded.
      * @return The accumulated vote as to whether to allow this expansion or 
collapse.
      */
-    default public Vote previewBranchExpandedChange(TreeView treeView, Path 
path) {
+    default Vote previewBranchExpandedChange(TreeView treeView, Path path) {
         return Vote.APPROVE;
     }
 
@@ -123,7 +123,7 @@ public interface TreeViewBranchListener
      * @param path The path of the node whose state will remain the same.
      * @param reason The tallied vote result that caused the veto.
      */
-    default public void branchExpandedChangeVetoed(TreeView treeView, Path 
path, Vote reason) {
+    default void branchExpandedChangeVetoed(TreeView treeView, Path path, Vote 
reason) {
     }
 
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewListener.java Fri Apr 27 
18:09:02 2018
@@ -127,7 +127,7 @@ public interface TreeViewListener {
      * @param treeView         The source of this event.
      * @param previousTreeData The previous data for this tree.
      */
-    default public void treeDataChanged(TreeView treeView, List<?> 
previousTreeData) {
+    default void treeDataChanged(TreeView treeView, List<?> previousTreeData) {
     }
 
     /**
@@ -136,7 +136,7 @@ public interface TreeViewListener {
      * @param treeView             The source of this event.
      * @param previousNodeRenderer The previous renderer for tree nodes.
      */
-    default public void nodeRendererChanged(TreeView treeView, 
TreeView.NodeRenderer previousNodeRenderer) {
+    default void nodeRendererChanged(TreeView treeView, TreeView.NodeRenderer 
previousNodeRenderer) {
     }
 
     /**
@@ -145,7 +145,7 @@ public interface TreeViewListener {
      * @param treeView           The source of this event.
      * @param previousNodeEditor The previous editor for tree nodes.
      */
-    default public void nodeEditorChanged(TreeView treeView, 
TreeView.NodeEditor previousNodeEditor) {
+    default void nodeEditorChanged(TreeView treeView, TreeView.NodeEditor 
previousNodeEditor) {
     }
 
     /**
@@ -154,7 +154,7 @@ public interface TreeViewListener {
      * @param treeView           The source of this event.
      * @param previousSelectMode What the tree view's select mode was before 
the change.
      */
-    default public void selectModeChanged(TreeView treeView, 
TreeView.SelectMode previousSelectMode) {
+    default void selectModeChanged(TreeView treeView, TreeView.SelectMode 
previousSelectMode) {
     }
 
     /**
@@ -162,7 +162,7 @@ public interface TreeViewListener {
      *
      * @param treeView The source of this event.
      */
-    default public void checkmarksEnabledChanged(TreeView treeView) {
+    default void checkmarksEnabledChanged(TreeView treeView) {
     }
 
     /**
@@ -170,7 +170,7 @@ public interface TreeViewListener {
      *
      * @param treeView The tree view that has changed.
      */
-    default public void showMixedCheckmarkStateChanged(TreeView treeView) {
+    default void showMixedCheckmarkStateChanged(TreeView treeView) {
     }
 
     /**
@@ -179,7 +179,7 @@ public interface TreeViewListener {
      * @param treeView                   The tree view that has changed.
      * @param previousDisabledNodeFilter The previous filter that determines 
the disabled nodes.
      */
-    default public void disabledNodeFilterChanged(TreeView treeView, Filter<?> 
previousDisabledNodeFilter) {
+    default void disabledNodeFilterChanged(TreeView treeView, Filter<?> 
previousDisabledNodeFilter) {
     }
 
     /**
@@ -188,7 +188,7 @@ public interface TreeViewListener {
      * @param treeView                        The source of this event.
      * @param previousDisabledCheckmarkFilter The previous filter that 
determined the disabled checkmarks.
      */
-    default public void disabledCheckmarkFilterChanged(TreeView treeView,
+    default void disabledCheckmarkFilterChanged(TreeView treeView,
         Filter<?> previousDisabledCheckmarkFilter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewNodeListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewNodeListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewNodeListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewNodeListener.java Fri Apr 
27 18:09:02 2018
@@ -93,7 +93,7 @@ public interface TreeViewNodeListener {
      * @param path     The path to the branch where the node was inserted.
      * @param index    The index of the newly inserted node within the branch.
      */
-    default public void nodeInserted(TreeView treeView, Path path, int index) {
+    default void nodeInserted(TreeView treeView, Path path, int index) {
     }
 
     /**
@@ -105,7 +105,7 @@ public interface TreeViewNodeListener {
      * @param count    The number of nodes that were removed, or <tt>-1</tt> 
if all
      * nodes were removed.
      */
-    default public void nodesRemoved(TreeView treeView, Path path, int index, 
int count) {
+    default void nodesRemoved(TreeView treeView, Path path, int index, int 
count) {
     }
 
     /**
@@ -115,7 +115,7 @@ public interface TreeViewNodeListener {
      * @param path     Path to the branch that is the parent of the updated 
node.
      * @param index    Index of the updated node within the branch.
      */
-    default public void nodeUpdated(TreeView treeView, Path path, int index) {
+    default void nodeUpdated(TreeView treeView, Path path, int index) {
     }
 
     /**
@@ -124,7 +124,7 @@ public interface TreeViewNodeListener {
      * @param treeView The source of this event.
      * @param path     Path to the branch where the nodes were cleared.
      */
-    default public void nodesCleared(TreeView treeView, Path path) {
+    default void nodesCleared(TreeView treeView, Path path) {
     }
 
     /**
@@ -133,6 +133,6 @@ public interface TreeViewNodeListener {
      * @param treeView The source of this event.
      * @param path     Path to the branch where the nodes were sorted.
      */
-    default public void nodesSorted(TreeView treeView, Path path) {
+    default void nodesSorted(TreeView treeView, Path path) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewSelectionListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewSelectionListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewSelectionListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TreeViewSelectionListener.java Fri 
Apr 27 18:09:02 2018
@@ -83,7 +83,7 @@ public interface TreeViewSelectionListen
      * @param treeView The source of this event.
      * @param path     The path that has been added to the selection.
      */
-    default public void selectedPathAdded(TreeView treeView, Path path) {
+    default void selectedPathAdded(TreeView treeView, Path path) {
     }
 
     /**
@@ -92,7 +92,7 @@ public interface TreeViewSelectionListen
      * @param treeView The source of this event.
      * @param path     The path that was removed from the selection.
      */
-    default public void selectedPathRemoved(TreeView treeView, Path path) {
+    default void selectedPathRemoved(TreeView treeView, Path path) {
     }
 
     /**
@@ -101,7 +101,7 @@ public interface TreeViewSelectionListen
      * @param treeView              The source of this event.
      * @param previousSelectedPaths The list of paths that were previously 
selected.
      */
-    default public void selectedPathsChanged(TreeView treeView, Sequence<Path> 
previousSelectedPaths) {
+    default void selectedPathsChanged(TreeView treeView, Sequence<Path> 
previousSelectedPaths) {
     }
 
     /**
@@ -110,6 +110,6 @@ public interface TreeViewSelectionListen
      * @param treeView             The source of this event.
      * @param previousSelectedNode The node that used to be selected.
      */
-    default public void selectedNodeChanged(TreeView treeView, Object 
previousSelectedNode) {
+    default void selectedNodeChanged(TreeView treeView, Object 
previousSelectedNode) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserListener.java Fri Apr 27 
18:09:02 2018
@@ -130,7 +130,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser     The browser that has changed.
      * @param previousManager The previous file manager for this browser.
      */
-    default public void managerChanged(VFSBrowser fileBrowser, 
FileSystemManager previousManager) {
+    default void managerChanged(VFSBrowser fileBrowser, FileSystemManager 
previousManager) {
     }
 
     /**
@@ -139,7 +139,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser           The browser that has changed.
      * @param previousRootDirectory The previous root directory that we were 
browsing.
      */
-    default public void rootDirectoryChanged(VFSBrowser fileBrowser, 
FileObject previousRootDirectory) {
+    default void rootDirectoryChanged(VFSBrowser fileBrowser, FileObject 
previousRootDirectory) {
     }
 
     /**
@@ -148,7 +148,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser           The browser that has changed.
      * @param previousHomeDirectory The previous home directory.
      */
-    default public void homeDirectoryChanged(VFSBrowser fileBrowser, 
FileObject previousHomeDirectory) {
+    default void homeDirectoryChanged(VFSBrowser fileBrowser, FileObject 
previousHomeDirectory) {
     }
 
     /**
@@ -157,7 +157,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser The source of this event.
      * @param file        The file newly added to the selection.
      */
-    default public void selectedFileAdded(VFSBrowser fileBrowser, FileObject 
file) {
+    default void selectedFileAdded(VFSBrowser fileBrowser, FileObject file) {
     }
 
     /**
@@ -166,7 +166,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser The source of this event.
      * @param file        The file just removed from the selection.
      */
-    default public void selectedFileRemoved(VFSBrowser fileBrowser, FileObject 
file) {
+    default void selectedFileRemoved(VFSBrowser fileBrowser, FileObject file) {
     }
 
     /**
@@ -175,7 +175,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser           The source of this event.
      * @param previousSelectedFiles The sequence of files that were previously 
selected.
      */
-    default public void selectedFilesChanged(VFSBrowser fileBrowser,
+    default void selectedFilesChanged(VFSBrowser fileBrowser,
         Sequence<FileObject> previousSelectedFiles) {
     }
 
@@ -184,7 +184,7 @@ public interface VFSBrowserListener {
      *
      * @param fileBrowser The browser that has changed selection modes.
      */
-    default public void multiSelectChanged(VFSBrowser fileBrowser) {
+    default void multiSelectChanged(VFSBrowser fileBrowser) {
     }
 
     /**
@@ -193,7 +193,7 @@ public interface VFSBrowserListener {
      * @param fileBrowser                The source of this event.
      * @param previousDisabledFileFilter The previous filter for disabled 
files (if any).
      */
-    default public void disabledFileFilterChanged(VFSBrowser fileBrowser,
+    default void disabledFileFilterChanged(VFSBrowser fileBrowser,
         Filter<FileObject> previousDisabledFileFilter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserSheetListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserSheetListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserSheetListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/VFSBrowserSheetListener.java Fri 
Apr 27 18:09:02 2018
@@ -116,7 +116,7 @@ public interface VFSBrowserSheetListener
      * @param fileBrowserSheet The source of this event.
      * @param previousManager  The previous file manager that was set.
      */
-    default public void managerChanged(VFSBrowserSheet fileBrowserSheet, 
FileSystemManager previousManager) {
+    default void managerChanged(VFSBrowserSheet fileBrowserSheet, 
FileSystemManager previousManager) {
     }
 
     /**
@@ -125,7 +125,7 @@ public interface VFSBrowserSheetListener
      * @param fileBrowserSheet The source of this event.
      * @param previousMode     The previous mode for this browser.
      */
-    default public void modeChanged(VFSBrowserSheet fileBrowserSheet, 
VFSBrowserSheet.Mode previousMode) {
+    default void modeChanged(VFSBrowserSheet fileBrowserSheet, 
VFSBrowserSheet.Mode previousMode) {
     }
 
     /**
@@ -134,7 +134,7 @@ public interface VFSBrowserSheetListener
      * @param fileBrowserSheet      The browser sheet that has changed.
      * @param previousRootDirectory The previously set root directory for this 
browser.
      */
-    default public void rootDirectoryChanged(VFSBrowserSheet fileBrowserSheet,
+    default void rootDirectoryChanged(VFSBrowserSheet fileBrowserSheet,
         FileObject previousRootDirectory) {
     }
 
@@ -145,7 +145,7 @@ public interface VFSBrowserSheetListener
      * @param fileBrowserSheet      The browser sheet that has changed.
      * @param previousHomeDirectory The previously set home directory for this 
browser.
      */
-    default public void homeDirectoryChanged(VFSBrowserSheet fileBrowserSheet,
+    default void homeDirectoryChanged(VFSBrowserSheet fileBrowserSheet,
         FileObject previousHomeDirectory) {
     }
 
@@ -155,7 +155,7 @@ public interface VFSBrowserSheetListener
      * @param fileBrowserSheet      The source of this event.
      * @param previousSelectedFiles The previous sequence of selected files.
      */
-    default public void selectedFilesChanged(VFSBrowserSheet fileBrowserSheet,
+    default void selectedFilesChanged(VFSBrowserSheet fileBrowserSheet,
         Sequence<FileObject> previousSelectedFiles) {
     }
 
@@ -165,7 +165,7 @@ public interface VFSBrowserSheetListener
      * @param fileBrowserSheet           The source of this event.
      * @param previousDisabledFileFilter The previous filter for disabled 
files.
      */
-    default public void disabledFileFilterChanged(VFSBrowserSheet 
fileBrowserSheet,
+    default void disabledFileFilterChanged(VFSBrowserSheet fileBrowserSheet,
         Filter<FileObject> previousDisabledFileFilter) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ViewportListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ViewportListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ViewportListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ViewportListener.java Fri Apr 27 
18:09:02 2018
@@ -71,7 +71,7 @@ public interface ViewportListener {
      * @param scrollPane        The viewport that has scrolled.
      * @param previousScrollTop The previous top scroll position.
      */
-    default public void scrollTopChanged(Viewport scrollPane, int 
previousScrollTop) {
+    default void scrollTopChanged(Viewport scrollPane, int previousScrollTop) {
     }
 
     /**
@@ -80,7 +80,7 @@ public interface ViewportListener {
      * @param scrollPane         The viewport that has been scrolled.
      * @param previousScrollLeft The previous left scroll position.
      */
-    default public void scrollLeftChanged(Viewport scrollPane, int 
previousScrollLeft) {
+    default void scrollLeftChanged(Viewport scrollPane, int 
previousScrollLeft) {
     }
 
     /**
@@ -89,6 +89,6 @@ public interface ViewportListener {
      * @param scrollPane   The viewport whose view has changed.
      * @param previousView What the view (or the scrollable component) used to 
be.
      */
-    default public void viewChanged(Viewport scrollPane, Component 
previousView) {
+    default void viewChanged(Viewport scrollPane, Component previousView) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowListener.java Fri Apr 27 
18:09:02 2018
@@ -113,7 +113,7 @@ public interface WindowListener {
      * @param window        The window whose title has changed.
      * @param previousTitle What the title was previously (can be {@code 
null}).
      */
-    default public void titleChanged(Window window, String previousTitle) {
+    default void titleChanged(Window window, String previousTitle) {
     }
 
     /**
@@ -122,7 +122,7 @@ public interface WindowListener {
      * @param window    The window that has changed.
      * @param addedIcon The icon that was added.
      */
-    default public void iconAdded(Window window, Image addedIcon) {
+    default void iconAdded(Window window, Image addedIcon) {
     }
 
     /**
@@ -133,7 +133,7 @@ public interface WindowListener {
      * @param index     The index where this icon was inserted in the
      *                  window's icon sequence..
      */
-    default public void iconInserted(Window window, Image addedIcon, int 
index) {
+    default void iconInserted(Window window, Image addedIcon, int index) {
     }
 
     /**
@@ -144,7 +144,7 @@ public interface WindowListener {
      *                the window's icon sequence.
      * @param removed The sequence of icons that were actually removed.
      */
-    default public void iconsRemoved(Window window, int index, Sequence<Image> 
removed) {
+    default void iconsRemoved(Window window, int index, Sequence<Image> 
removed) {
     }
 
     /**
@@ -153,7 +153,7 @@ public interface WindowListener {
      * @param window          The window whose content has changed.
      * @param previousContent What the window's content was previously.
      */
-    default public void contentChanged(Window window, Component 
previousContent) {
+    default void contentChanged(Window window, Component previousContent) {
     }
 
     /**
@@ -162,7 +162,7 @@ public interface WindowListener {
      * @param window        The window that has changed its active state.
      * @param obverseWindow The "other" window that is affected.
      */
-    default public void activeChanged(Window window, Window obverseWindow) {
+    default void activeChanged(Window window, Window obverseWindow) {
     }
 
     /**
@@ -170,6 +170,6 @@ public interface WindowListener {
      *
      * @param window The window whose state has changed.
      */
-    default public void maximizedChanged(Window window) {
+    default void maximizedChanged(Window window) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowStateListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowStateListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowStateListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/WindowStateListener.java Fri Apr 
27 18:09:02 2018
@@ -110,7 +110,7 @@ public interface WindowStateListener {
      *
      * @param window The newly opened window.
      */
-    default public void windowOpened(Window window) {
+    default void windowOpened(Window window) {
     }
 
     /**
@@ -119,7 +119,7 @@ public interface WindowStateListener {
      * @param window The window that wants to close.
      * @return The vote from each listener as to whether to allow the close.
      */
-    default public Vote previewWindowClose(Window window) {
+    default Vote previewWindowClose(Window window) {
         return Vote.APPROVE;
     }
 
@@ -129,7 +129,7 @@ public interface WindowStateListener {
      * @param window The window that wants to open.
      * @return The vote from the listener as to whether to allow the open.
      */
-    default public Vote previewWindowOpen(Window window) {
+    default Vote previewWindowOpen(Window window) {
         return Vote.APPROVE;
     }
 
@@ -140,7 +140,7 @@ public interface WindowStateListener {
      * @param reason The accumulated vote from all the listeners that
      *               vetoed this event.
      */
-    default public void windowCloseVetoed(Window window, Vote reason) {
+    default void windowCloseVetoed(Window window, Vote reason) {
     }
 
     /**
@@ -150,7 +150,7 @@ public interface WindowStateListener {
      * @param reason The accumulated vote from all the listeners that
      *               vetoed this event.
      */
-    default public void windowOpenVetoed(Window window, Vote reason) {
+    default void windowOpenVetoed(Window window, Vote reason) {
     }
 
     /**
@@ -160,6 +160,6 @@ public interface WindowStateListener {
      * @param display The display in which the window was shown.
      * @param owner   The owner of this window (which could be {@code null}).
      */
-    default public void windowClosed(Window window, Display display, Window 
owner) {
+    default void windowClosed(Window window, Display display, Window owner) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/media/MovieListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/media/MovieListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/media/MovieListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/media/MovieListener.java Fri Apr 
27 18:09:02 2018
@@ -111,7 +111,7 @@ public interface MovieListener {
      * @param previousWidth  The previous width of this movie.
      * @param previousHeight The previous value of the height before resizing.
      */
-    default public void sizeChanged(Movie movie, int previousWidth, int 
previousHeight) {
+    default void sizeChanged(Movie movie, int previousWidth, int 
previousHeight) {
     }
 
     /**
@@ -120,7 +120,7 @@ public interface MovieListener {
      * @param movie            The movie that has changed.
      * @param previousBaseline The previous baseline value of the movie.
      */
-    default public void baselineChanged(Movie movie, int previousBaseline) {
+    default void baselineChanged(Movie movie, int previousBaseline) {
     }
 
     /**
@@ -129,7 +129,7 @@ public interface MovieListener {
      * @param movie         The movie that has changed.
      * @param previousFrame The previous frame index of the movie.
      */
-    default public void currentFrameChanged(Movie movie, int previousFrame) {
+    default void currentFrameChanged(Movie movie, int previousFrame) {
     }
 
     /**
@@ -137,7 +137,7 @@ public interface MovieListener {
      *
      * @param movie The source of this event.
      */
-    default public void loopingChanged(Movie movie) {
+    default void loopingChanged(Movie movie) {
     }
 
     /**
@@ -147,7 +147,7 @@ public interface MovieListener {
      *
      * @param movie The movie that has just started to play.
      */
-    default public void movieStarted(Movie movie) {
+    default void movieStarted(Movie movie) {
     }
 
     /**
@@ -157,7 +157,7 @@ public interface MovieListener {
      *
      * @param movie The movie that has just stopped playing.
      */
-    default public void movieStopped(Movie movie) {
+    default void movieStopped(Movie movie) {
     }
 
     /**
@@ -169,6 +169,6 @@ public interface MovieListener {
      * @param width  The width of the image to repaint.
      * @param height The height to repaint.
      */
-    default public void regionUpdated(Movie movie, int x, int y, int width, 
int height) {
+    default void regionUpdated(Movie movie, int x, int y, int width, int 
height) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BlockListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BlockListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BlockListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BlockListener.java Fri Apr 27 
18:09:02 2018
@@ -52,7 +52,7 @@ public interface BlockListener {
      * @param block                       The text block in question.
      * @param previousHorizontalAlignment The previous alignment value.
      */
-    default public void horizontalAlignmentChanged(Block block,
+    default void horizontalAlignmentChanged(Block block,
         HorizontalAlignment previousHorizontalAlignment) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedListListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedListListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedListListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedListListener.java Fri 
Apr 27 18:09:02 2018
@@ -50,6 +50,6 @@ public interface BulletedListListener {
      * @param bulletedList  The list whose style has changed.
      * @param previousStyle The previous list style.
      */
-    default public void styleChanged(BulletedList bulletedList, 
BulletedList.Style previousStyle) {
+    default void styleChanged(BulletedList bulletedList, BulletedList.Style 
previousStyle) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java Fri Apr 
27 18:09:02 2018
@@ -114,7 +114,7 @@ public interface ElementListener {
      * @param element The element that has changed.
      * @param index   Where in the element's node sequence the new one was 
inserted.
      */
-    default public void nodeInserted(Element element, int index) {
+    default void nodeInserted(Element element, int index) {
     }
 
     /**
@@ -124,7 +124,7 @@ public interface ElementListener {
      * @param index   The starting index of where nodes were removed.
      * @param nodes   The actual sequence of removed nodes.
      */
-    default public void nodesRemoved(Element element, int index, 
Sequence<Node> nodes) {
+    default void nodesRemoved(Element element, int index, Sequence<Node> 
nodes) {
     }
 
     /**
@@ -133,7 +133,7 @@ public interface ElementListener {
      * @param element      The element that changed.
      * @param previousFont What the font used to be.
      */
-    default public void fontChanged(Element element, java.awt.Font 
previousFont) {
+    default void fontChanged(Element element, java.awt.Font previousFont) {
     }
 
     /**
@@ -142,7 +142,7 @@ public interface ElementListener {
      * @param element                 The element that changed.
      * @param previousBackgroundColor What the background color was before the 
change.
      */
-    default public void backgroundColorChanged(Element element, Color 
previousBackgroundColor) {
+    default void backgroundColorChanged(Element element, Color 
previousBackgroundColor) {
     }
 
     /**
@@ -151,7 +151,7 @@ public interface ElementListener {
      * @param element                 The element whose color changed.
      * @param previousForegroundColor The old foreground color.
      */
-    default public void foregroundColorChanged(Element element, Color 
previousForegroundColor) {
+    default void foregroundColorChanged(Element element, Color 
previousForegroundColor) {
     }
 
     /**
@@ -159,7 +159,7 @@ public interface ElementListener {
      *
      * @param element The element that changed.
      */
-    default public void underlineChanged(Element element) {
+    default void underlineChanged(Element element) {
     }
 
     /**
@@ -167,6 +167,6 @@ public interface ElementListener {
      *
      * @param element The element that changed.
      */
-    default public void strikethroughChanged(Element element) {
+    default void strikethroughChanged(Element element) {
     }
 }

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java Fri Apr 27 
18:09:02 2018
@@ -114,7 +114,7 @@ public interface NodeListener {
      * @param node           The node that moved.
      * @param previousParent What the node's parent used to be.
      */
-    default public void parentChanged(Node node, Element previousParent) {
+    default void parentChanged(Node node, Element previousParent) {
     }
 
     /**
@@ -123,7 +123,7 @@ public interface NodeListener {
      * @param node           The node that has been updated.
      * @param previousOffset The previous offset of this node.
      */
-    default public void offsetChanged(Node node, int previousOffset) {
+    default void offsetChanged(Node node, int previousOffset) {
     }
 
     /**
@@ -132,7 +132,7 @@ public interface NodeListener {
      * @param node   The parent node that changed.
      * @param offset The offset where the child node was inserted.
      */
-    default public void nodeInserted(Node node, int offset) {
+    default void nodeInserted(Node node, int offset) {
     }
 
     /**
@@ -142,7 +142,7 @@ public interface NodeListener {
      * @param removed The sequence of child nodes that were removed.
      * @param offset  The starting offset of the removed nodes.
      */
-    default public void nodesRemoved(Node node, Sequence<Node> removed, int 
offset) {
+    default void nodesRemoved(Node node, Sequence<Node> removed, int offset) {
     }
 
     /**
@@ -152,7 +152,7 @@ public interface NodeListener {
      * @param offset The starting offset of the insertion.
      * @param span   Count of characters inserted.
      */
-    default public void rangeInserted(Node node, int offset, int span) {
+    default void rangeInserted(Node node, int offset, int span) {
     }
 
     /**
@@ -165,6 +165,6 @@ public interface NodeListener {
      *                       if the removal was directly from a text node,
      *                       otherwise this will be null.
      */
-    default public void rangeRemoved(Node node, int offset, int 
characterCount, CharSequence removedChars) {
+    default void rangeRemoved(Node node, int offset, int characterCount, 
CharSequence removedChars) {
     }
 }

Modified: 
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedListListener.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedListListener.java?rev=1830383&r1=1830382&r2=1830383&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedListListener.java 
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedListListener.java Fri 
Apr 27 18:09:02 2018
@@ -50,6 +50,6 @@ public interface NumberedListListener {
      * @param numberedList  The list whose style has changed.
      * @param previousStyle The previous style for this list.
      */
-    default public void styleChanged(NumberedList numberedList, 
NumberedList.Style previousStyle) {
+    default void styleChanged(NumberedList numberedList, NumberedList.Style 
previousStyle) {
     }
 }


Reply via email to