Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHOENIX-5130 removed 'static' keyword from 'private static enum' #438

Merged
merged 1 commit into from
Sep 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public void testCeilDecimalExpressionKeyRangeCoverage() throws Exception {
* 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");
Expand Down Expand Up @@ -315,7 +315,7 @@ public Expression getExpression(byte[] key, int scale) throws SQLException {
* 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, ">="),
Expand Down