You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by aj...@apache.org on 2018/01/06 15:18:08 UTC

[44/44] jena git commit: Renaming TS_DatasetGraphViews -> TS_DyadicDatasetGraphs

Renaming TS_DatasetGraphViews -> TS_DyadicDatasetGraphs


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

Branch: refs/heads/master
Commit: c0c294da48e4919b42538aa94f1085c0291f4d5c
Parents: ff7aba9
Author: ajs6f <aj...@apache.org>
Authored: Fri Jan 5 11:54:48 2018 -0500
Committer: ajs6f <aj...@apache.org>
Committed: Fri Jan 5 11:54:48 2018 -0500

----------------------------------------------------------------------
 .../jena/sparql/util/TS_DatasetGraphViews.java  | 28 --------------------
 .../sparql/util/TS_DyadicDatasetGraphs.java     | 28 ++++++++++++++++++++
 .../org/apache/jena/sparql/util/TS_Util.java    |  2 +-
 3 files changed, 29 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/c0c294da/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java
deleted file mode 100644
index 6df9e28..0000000
--- a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java
+++ /dev/null
@@ -1,28 +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.apache.jena.sparql.util;
-
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-
-@RunWith(Suite.class)
-@SuiteClasses({ TestIntersectionDatasetGraph.class, TestDifferenceDatasetGraph.class, TestUnionDatasetGraph.class })
-
-public class TS_DatasetGraphViews {}

http://git-wip-us.apache.org/repos/asf/jena/blob/c0c294da/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DyadicDatasetGraphs.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DyadicDatasetGraphs.java b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DyadicDatasetGraphs.java
new file mode 100644
index 0000000..643b41b
--- /dev/null
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DyadicDatasetGraphs.java
@@ -0,0 +1,28 @@
+/*
+ * 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.apache.jena.sparql.util;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+@RunWith(Suite.class)
+@SuiteClasses({ TestIntersectionDatasetGraph.class, TestDifferenceDatasetGraph.class, TestUnionDatasetGraph.class })
+
+public class TS_DyadicDatasetGraphs {}

http://git-wip-us.apache.org/repos/asf/jena/blob/c0c294da/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
index 969836b..40f108d 100644
--- a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
@@ -30,7 +30,7 @@ import org.junit.runners.Suite.SuiteClasses ;
     TestList.class ,
     TestDateTimeUtils.class ,
     TestFmtUtils.class,
-    TS_DatasetGraphViews.class,
+    TS_DyadicDatasetGraphs.class,
     TS_DatasetCollectors.class
 })
 public class TS_Util