You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/05/21 22:52:51 UTC

[2/2] incubator-tinkerpop git commit: This class is no longer utilized.

This class is no longer utilized.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/2ad860e9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/2ad860e9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/2ad860e9

Branch: refs/heads/master
Commit: 2ad860e928d2d44f39b7e2f9678c2f616354f149
Parents: d1c01af
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu May 21 16:52:31 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu May 21 16:52:31 2015 -0400

----------------------------------------------------------------------
 .../util/InterruptedRuntimeException.java       | 41 --------------------
 1 file changed, 41 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2ad860e9/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/util/InterruptedRuntimeException.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/util/InterruptedRuntimeException.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/util/InterruptedRuntimeException.java
deleted file mode 100644
index c32eb02..0000000
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/util/InterruptedRuntimeException.java
+++ /dev/null
@@ -1,41 +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.tinkerpop.gremlin.util;
-
-/**
- * An unchecked version of the {@link java.lang.InterruptedException}.
- *
- * @author Stephen Mallette (http://stephen.genoprime.com)
- */
-public class InterruptedRuntimeException extends RuntimeException {
-    public InterruptedRuntimeException() {
-    }
-
-    public InterruptedRuntimeException(final String message) {
-        super(message);
-    }
-
-    public InterruptedRuntimeException(final String message, final Throwable cause) {
-        super(message, cause);
-    }
-
-    public InterruptedRuntimeException(final Throwable cause) {
-        super(cause);
-    }
-}