Repository: incubator-vxquery Updated Branches: refs/heads/prestonc/benchmark_queries [created] 667dc7148
Removed unused file. Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/3daa5c52 Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/3daa5c52 Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/3daa5c52 Branch: refs/heads/prestonc/benchmark_queries Commit: 3daa5c52b9da477d0356cff9e6bdaae9c07c16e6 Parents: fee9582 Author: Preston Carman <[email protected]> Authored: Wed Jun 25 18:54:49 2014 -0700 Committer: Preston Carman <[email protected]> Committed: Wed Jun 25 18:54:49 2014 -0700 ---------------------------------------------------------------------- .../query/VXQueryNullableTypeComputer.java | 29 -------------------- 1 file changed, 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/3daa5c52/vxquery-core/src/main/java/org/apache/vxquery/xmlquery/query/VXQueryNullableTypeComputer.java ---------------------------------------------------------------------- diff --git a/vxquery-core/src/main/java/org/apache/vxquery/xmlquery/query/VXQueryNullableTypeComputer.java b/vxquery-core/src/main/java/org/apache/vxquery/xmlquery/query/VXQueryNullableTypeComputer.java deleted file mode 100644 index 20b26bb..0000000 --- a/vxquery-core/src/main/java/org/apache/vxquery/xmlquery/query/VXQueryNullableTypeComputer.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright 2009-2013 by The Regents of the University of California - * Licensed 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 from - * - * 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.apache.vxquery.xmlquery.query; - -import edu.uci.ics.hyracks.algebricks.common.exceptions.AlgebricksException; -import edu.uci.ics.hyracks.algebricks.core.algebra.expressions.INullableTypeComputer; - -public class VXQueryNullableTypeComputer implements INullableTypeComputer { - - public static INullableTypeComputer INSTANCE = new VXQueryNullableTypeComputer(); - - @Override - public Object makeNullableType(Object type) throws AlgebricksException { - return type; - } - -}
