You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2015/05/18 00:59:04 UTC

cassandra git commit: move src/target versions for UDF code to 1.8

Repository: cassandra
Updated Branches:
  refs/heads/trunk e99480574 -> a61cc8877


move src/target versions for UDF code to 1.8


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/a61cc887
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/a61cc887
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/a61cc887

Branch: refs/heads/trunk
Commit: a61cc887758487d7d7b9f8d7173a8864cca703e0
Parents: e994805
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Sun May 17 18:58:36 2015 -0400
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Sun May 17 18:58:36 2015 -0400

----------------------------------------------------------------------
 .../apache/cassandra/cql3/functions/JavaSourceUDFFactory.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/a61cc887/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java b/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java
index 97a08b1..c6b9dd3 100644
--- a/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java
+++ b/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java
@@ -90,9 +90,9 @@ public final class JavaSourceUDFFactory
         settings.put(CompilerOptions.OPTION_ReportDeprecation,
                      CompilerOptions.IGNORE);
         settings.put(CompilerOptions.OPTION_Source,
-                     CompilerOptions.VERSION_1_7);
+                     CompilerOptions.VERSION_1_8);
         settings.put(CompilerOptions.OPTION_TargetPlatform,
-                     CompilerOptions.VERSION_1_7);
+                     CompilerOptions.VERSION_1_8);
 
         compilerOptions = new CompilerOptions(settings);
         compilerOptions.parseLiteralExpressionsAsConstants = true;