Removed testing file.
Project: http://git-wip-us.apache.org/repos/asf/vxquery/repo Commit: http://git-wip-us.apache.org/repos/asf/vxquery/commit/9166f5a8 Tree: http://git-wip-us.apache.org/repos/asf/vxquery/tree/9166f5a8 Diff: http://git-wip-us.apache.org/repos/asf/vxquery/diff/9166f5a8 Branch: refs/heads/master Commit: 9166f5a8fa9034e110729ea9d76765f2e5d04c10 Parents: 61b22a9 Author: Preston Carman <[email protected]> Authored: Wed Jun 25 19:33:54 2014 -0700 Committer: Preston Carman <[email protected]> Committed: Thu Aug 7 08:39:47 2014 -0700 ---------------------------------------------------------------------- .../query/VXQueryNullableTypeComputer.java | 29 -------------------- 1 file changed, 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/vxquery/blob/9166f5a8/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; - } - -}
