diff --git a/src/main/java/com/samskivert/depot/Funcs.java b/src/main/java/com/samskivert/depot/Funcs.java index 1333318..0ca46e3 100644 --- a/src/main/java/com/samskivert/depot/Funcs.java +++ b/src/main/java/com/samskivert/depot/Funcs.java @@ -127,8 +127,8 @@ public class Funcs /** * Creates an expression that evaluates to the largest of the given expressions. */ - public static FluentExp greatest (SQLExpression arg1, - SQLExpression arg2) + public static FluentExp greatest (SQLExpression arg1, + SQLExpression arg2) { return new Greatest(arg1, arg2); } @@ -136,7 +136,7 @@ public class Funcs /** * Creates an expression that evaluates to the largest of the given expressions. */ - public static FluentExp greatest (SQLExpression... args) + public static FluentExp greatest (SQLExpression... args) { return new Greatest(args); } @@ -144,8 +144,8 @@ public class Funcs /** * Creates an expression that evaluates to the smallest of the given expressions. */ - public static FluentExp least (SQLExpression arg1, - SQLExpression arg2) + public static FluentExp least (SQLExpression arg1, + SQLExpression arg2) { return new Least(arg1, arg2); } @@ -153,7 +153,7 @@ public class Funcs /** * Creates an expression that evaluates to the smallest of the given expressions. */ - public static FluentExp least (SQLExpression... args) + public static FluentExp least (SQLExpression... args) { return new Least(args); } diff --git a/src/main/java/com/samskivert/depot/impl/expression/ConditionalFun.java b/src/main/java/com/samskivert/depot/impl/expression/ConditionalFun.java index 580ff31..f88acc8 100644 --- a/src/main/java/com/samskivert/depot/impl/expression/ConditionalFun.java +++ b/src/main/java/com/samskivert/depot/impl/expression/ConditionalFun.java @@ -41,7 +41,7 @@ public abstract class ConditionalFun } } - public static class Greatest extends ManyArgFun { + public static class Greatest extends ManyArgFun { public Greatest (SQLExpression... args) { super(args); } @@ -56,7 +56,7 @@ public abstract class ConditionalFun } } - public static class Least extends ManyArgFun { + public static class Least extends ManyArgFun { public Least (SQLExpression... args) { super(args); }