Author: rwhitcomb
Date: Wed May 24 16:13:32 2017
New Revision: 1796077
URL: http://svn.apache.org/viewvc?rev=1796077&view=rev
Log:
Correct misplaced opening braces, according to the existing Pivot
style guidelines.
Modified:
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/ListViewIndexBindMapping.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/SpinnerIndexBindMapping.java
Modified:
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/ListViewIndexBindMapping.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/content/ListViewIndexBindMapping.java?rev=1796077&r1=1796076&r2=1796077&view=diff
==============================================================================
---
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/ListViewIndexBindMapping.java
(original)
+++
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/ListViewIndexBindMapping.java
Wed May 24 16:13:32 2017
@@ -25,8 +25,8 @@ import org.apache.pivot.wtk.ListView;
* the index itself instead of the selected item. This is a convenience
* class for users where the data stored is just the index of the item.
*/
-public class ListViewIndexBindMapping implements ListView.ItemBindMapping
-{
+public class ListViewIndexBindMapping implements ListView.ItemBindMapping {
+
/**
* Called during <tt>load</tt>, and <tt>value</tt> is what is
* stored in our data object (which is the <tt>Integer</tt>
Modified:
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/SpinnerIndexBindMapping.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/content/SpinnerIndexBindMapping.java?rev=1796077&r1=1796076&r2=1796077&view=diff
==============================================================================
---
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/SpinnerIndexBindMapping.java
(original)
+++
pivot/trunk/wtk/src/org/apache/pivot/wtk/content/SpinnerIndexBindMapping.java
Wed May 24 16:13:32 2017
@@ -25,8 +25,8 @@ import org.apache.pivot.wtk.Spinner;
* the index itself instead of the selected item. This is a convenience
* class for users where the data stored is just the index of the item.
*/
-public class SpinnerIndexBindMapping implements Spinner.ItemBindMapping
-{
+public class SpinnerIndexBindMapping implements Spinner.ItemBindMapping {
+
/**
* Called during <tt>load</tt>, and <tt>value</tt> is what is
* stored in our data object (which is the <tt>Integer</tt>