From 6d520a33d6df70d5c0696b5e8e019ea1533c0ed9 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 10 Jun 2009 20:58:55 +0000 Subject: [PATCH] Oops, those should be static. --- src/java/com/samskivert/depot/Exps.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/samskivert/depot/Exps.java b/src/java/com/samskivert/depot/Exps.java index 23d687b..b704e71 100644 --- a/src/java/com/samskivert/depot/Exps.java +++ b/src/java/com/samskivert/depot/Exps.java @@ -35,7 +35,7 @@ public class Exps /** * Wraps the supplied object in a {@link ValueExp}. */ - public ValueExp value (Object value) + public static ValueExp value (Object value) { return new ValueExp(value); } @@ -44,7 +44,7 @@ public class Exps * Creates a {@link LiteralExp} with the supplied SQL snippet. Note: you're probably breaking * cross platform compatibility by using this construction. */ - public LiteralExp literal (String text) + public static LiteralExp literal (String text) { return new LiteralExp(text); }