You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/08/15 18:17:24 UTC

svn commit: r1756405 - /myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/GroupController.java

Author: lofwyr
Date: Mon Aug 15 18:17:24 2016
New Revision: 1756405

URL: http://svn.apache.org/viewvc?rev=1756405&view=rev
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/GroupController.java

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/GroupController.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/GroupController.java?rev=1756405&r1=1756404&r2=1756405&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/GroupController.java (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/GroupController.java Mon Aug 15 18:17:24 2016
@@ -41,10 +41,10 @@ public class GroupController implements
   private double value;
   private double valueInEuro;
   private Currency currency;
-  private static final Currency[] currencies;
+  private static final Currency[] CURRENCIES;
 
   static {
-    currencies = new Currency[]{
+    CURRENCIES = new Currency[]{
         Currency.getInstance("JPY"),
         Currency.getInstance("TTD"),
         Currency.getInstance("USD"),
@@ -136,6 +136,6 @@ public class GroupController implements
   }
 
   public Currency[] getCurrencies() {
-    return currencies;
+    return CURRENCIES;
   }
 }