You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2014/01/29 14:43:07 UTC

git commit: KARAF-2741 Remove unused JMSCallback

Updated Branches:
  refs/heads/master e1b1c45c6 -> eab9c5f9f


KARAF-2741 Remove unused JMSCallback


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

Branch: refs/heads/master
Commit: eab9c5f9fc6a2a2447a4f0ae9667ac0dd591d1f4
Parents: e1b1c45
Author: Christian Schneider <ch...@die-schneider.net>
Authored: Wed Jan 29 14:43:00 2014 +0100
Committer: Christian Schneider <ch...@die-schneider.net>
Committed: Wed Jan 29 14:43:00 2014 +0100

----------------------------------------------------------------------
 .../apache/karaf/jms/internal/JmsCallback.java  | 25 --------------------
 1 file changed, 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/eab9c5f9/jms/core/src/main/java/org/apache/karaf/jms/internal/JmsCallback.java
----------------------------------------------------------------------
diff --git a/jms/core/src/main/java/org/apache/karaf/jms/internal/JmsCallback.java b/jms/core/src/main/java/org/apache/karaf/jms/internal/JmsCallback.java
deleted file mode 100644
index 2e24819..0000000
--- a/jms/core/src/main/java/org/apache/karaf/jms/internal/JmsCallback.java
+++ /dev/null
@@ -1,25 +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.karaf.jms.internal;
-
-import javax.jms.Connection;
-import javax.jms.JMSException;
-import javax.jms.Session;
-
-public interface JmsCallback<E> {
-    public E doInSession(Connection connection, Session session) throws JMSException;
-}