This is an automated email from the ASF dual-hosted git repository.

gjacoby pushed a commit to branch 4.x-HBase-1.3
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-HBase-1.3 by this push:
     new 980bb3d  PHOENIX-5130 removed 'static' keyword from 'private static 
enum'
980bb3d is described below

commit 980bb3d4e7d6c0b78f2886759e92f8863ac3c087
Author: glqdlt <dlfdnd0...@gmail.com>
AuthorDate: Fri Feb 8 16:38:25 2019 +0900

    PHOENIX-5130 removed 'static' keyword from 'private static enum'
    
    Signed-off-by: Geoffrey Jacoby <gjac...@apache.org>
---
 .../org/apache/phoenix/expression/RoundFloorCeilExpressionsTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/phoenix-core/src/test/java/org/apache/phoenix/expression/RoundFloorCeilExpressionsTest.java
 
b/phoenix-core/src/test/java/org/apache/phoenix/expression/RoundFloorCeilExpressionsTest.java
index 3562099..bb09211 100644
--- 
a/phoenix-core/src/test/java/org/apache/phoenix/expression/RoundFloorCeilExpressionsTest.java
+++ 
b/phoenix-core/src/test/java/org/apache/phoenix/expression/RoundFloorCeilExpressionsTest.java
@@ -277,7 +277,7 @@ public class RoundFloorCeilExpressionsTest extends 
BaseConnectionlessQueryTest {
      * Represents the three different types of rounding expression and produces
      * expressions of their type when given a Decimal key and scale.
      */
-    private static enum RoundingType {
+    private enum RoundingType {
         ROUND("ROUND"),
         FLOOR("FLOOR"),
         CEIL("CEIL");
@@ -315,7 +315,7 @@ public class RoundFloorCeilExpressionsTest extends 
BaseConnectionlessQueryTest {
      * Includes information not kept by CompareFilter.CompareOp, including a 
string symbol
      * representation and a method for actually comparing comparables.
      */
-    private static enum Relation {
+    private enum Relation {
         EQUAL(CompareOp.EQUAL, "="),
         GREATER(CompareOp.GREATER, ">"),
         GREATER_OR_EQUAL(CompareOp.GREATER_OR_EQUAL, ">="),

Reply via email to