You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by gj...@apache.org on 2019/09/09 18:50:02 UTC

[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5130 removed 'static' keyword from 'private static enum'

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

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


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

commit a43339e21c30cf6c5e45d8b19df9ed1a62f468ca
Author: glqdlt <dl...@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 <gj...@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, ">="),