You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by yo...@apache.org on 2018/11/13 10:16:06 UTC

[14/50] [abbrv] incubator-omid git commit: [OMID-110] Typo bug fix

[OMID-110] Typo bug fix

Signed-off-by: Ohad Shacham <oh...@yahoo-inc.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-omid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-omid/commit/108198ed
Tree: http://git-wip-us.apache.org/repos/asf/incubator-omid/tree/108198ed
Diff: http://git-wip-us.apache.org/repos/asf/incubator-omid/diff/108198ed

Branch: refs/heads/1.0.0
Commit: 108198ed4c51089886399bb8b02ae180bd337cab
Parents: 769cf5b
Author: Yonatan Gottesman <yo...@gmail.com>
Authored: Mon Sep 17 12:56:21 2018 +0300
Committer: Yonatan Gottesman <yo...@gmail.com>
Committed: Tue Nov 13 10:07:53 2018 +0200

----------------------------------------------------------------------
 .../java/org/apache/omid/OmidBaseFilter.java    | 23 --------------------
 .../java/org/apache/omid/OmidFilterBase.java    | 23 ++++++++++++++++++++
 2 files changed, 23 insertions(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/108198ed/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidBaseFilter.java
----------------------------------------------------------------------
diff --git a/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidBaseFilter.java b/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidBaseFilter.java
deleted file mode 100644
index c3e817f..0000000
--- a/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidBaseFilter.java
+++ /dev/null
@@ -1,23 +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.omid;
-import org.apache.hadoop.hbase.filter.FilterBase;
-
-
-public abstract class OmidBaseFilter extends FilterBase {}
-

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/108198ed/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidFilterBase.java
----------------------------------------------------------------------
diff --git a/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidFilterBase.java b/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidFilterBase.java
new file mode 100644
index 0000000..b03acf7
--- /dev/null
+++ b/hbase-shims/hbase-2/src/main/java/org/apache/omid/OmidFilterBase.java
@@ -0,0 +1,23 @@
+/*
+ * 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.omid;
+import org.apache.hadoop.hbase.filter.FilterBase;
+
+
+public abstract class OmidFilterBase extends FilterBase {}
+