You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2018/05/24 02:39:45 UTC

[2/2] groovy git commit: GROOVY-8597: SqlGroovyMethods could be moved to avoid split packages - part (2)

GROOVY-8597: SqlGroovyMethods could be moved to avoid split packages - part (2)


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

Branch: refs/heads/master
Commit: 01ac72f35207ddb3cd8fb5ca534c1a0af74d366e
Parents: f8801bd
Author: Paul King <pa...@asert.com.au>
Authored: Thu May 24 12:39:39 2018 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Thu May 24 12:39:39 2018 +1000

----------------------------------------------------------------------
 .../groovy/runtime/SqlGroovyMethods.java        | 59 --------------------
 1 file changed, 59 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/01ac72f3/subprojects/groovy-sql/src/main/java/org/codehaus/groovy/runtime/SqlGroovyMethods.java
----------------------------------------------------------------------
diff --git a/subprojects/groovy-sql/src/main/java/org/codehaus/groovy/runtime/SqlGroovyMethods.java b/subprojects/groovy-sql/src/main/java/org/codehaus/groovy/runtime/SqlGroovyMethods.java
deleted file mode 100644
index b69c993..0000000
--- a/subprojects/groovy-sql/src/main/java/org/codehaus/groovy/runtime/SqlGroovyMethods.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-package org.codehaus.groovy.runtime;
-
-import groovy.sql.GroovyResultSet;
-import groovy.sql.GroovyRowResult;
-import groovy.sql.ResultSetMetaDataWrapper;
-import org.apache.groovy.sql.extensions.SqlExtensions;
-
-import java.sql.ResultSet;
-import java.sql.ResultSetMetaData;
-import java.sql.SQLException;
-import java.sql.Timestamp;
-import java.util.Date;
-import java.util.Iterator;
-
-/**
- * @deprecated use org.apache.groovy.sql.extensions.SqlExtensions
- */
-@Deprecated
-public class SqlGroovyMethods {
-
-    @Deprecated
-    public static GroovyRowResult toRowResult(ResultSet rs) throws SQLException {
-        return SqlExtensions.toRowResult(rs);
-    }
-
-    @Deprecated
-    public static Timestamp toTimestamp(Date d) {
-        return SqlExtensions.toTimestamp(d);
-    }
-
-    @Deprecated
-    public static boolean asBoolean(GroovyResultSet grs) {
-        return true;
-    }
-
-    @Deprecated
-    public static Iterator<ResultSetMetaDataWrapper> iterator(ResultSetMetaData resultSetMetaData) {
-        return SqlExtensions.iterator(resultSetMetaData);
-    }
-
-}