You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ad...@apache.org on 2017/04/25 07:12:29 UTC

geode git commit: GEODE-267: Removed deprecated ThreadInterruptedException class This closes #470

Repository: geode
Updated Branches:
  refs/heads/develop 2dd5f0f91 -> 641566181


GEODE-267: Removed deprecated ThreadInterruptedException class
This closes #470

Signed-off-by: adongre <ad...@apache.org>


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

Branch: refs/heads/develop
Commit: 641566181c680af1bd8d01c10f88c9e50c853b81
Parents: 2dd5f0f
Author: adongre <ad...@apache.org>
Authored: Wed Apr 19 14:31:46 2017 +0530
Committer: adongre <ad...@apache.org>
Committed: Tue Apr 25 12:24:30 2017 +0530

----------------------------------------------------------------------
 .../geode/ThreadInterruptedException.java       | 30 --------------------
 1 file changed, 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/64156618/geode-core/src/main/java/org/apache/geode/ThreadInterruptedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/org/apache/geode/ThreadInterruptedException.java b/geode-core/src/main/java/org/apache/geode/ThreadInterruptedException.java
deleted file mode 100644
index ae341f5..0000000
--- a/geode-core/src/main/java/org/apache/geode/ThreadInterruptedException.java
+++ /dev/null
@@ -1,30 +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.geode;
-
-/**
- * @deprecated this class is no longer used
- */
-
-@Deprecated
-public final class ThreadInterruptedException extends CancelException {
-  private static final long serialVersionUID = 6169940883541267514L;
-
-  /**
-   * Do not create instances of this class
-   */
-  private ThreadInterruptedException() {}
-
-}