summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-08-07 13:40:59 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-08-07 13:40:59 +0000
commit31bb9f50a75a4b740a64bce3ae71f032e98c5a95 (patch)
tree890891ce12283ad4dca5b91f60b92baa97a8dc56 /branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java
parent453d04c71b72f1b4ebb61b11d2badf5557ab5e0a (diff)
Not included in release
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@801995 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java')
-rw-r--r--branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java b/branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java
deleted file mode 100644
index 58cc4a3547..0000000000
--- a/branches/sca-java-1.5.1/samples/calculator-osgi/src/main/java/calculator/SubtractServiceImpl.java
+++ /dev/null
@@ -1,35 +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 calculator;
-
-import java.util.logging.Level;
-import java.util.logging.Logger;
-
-/**
- * An implementation of the subtract service.
- */
-public class SubtractServiceImpl implements SubtractService {
-
- public double subtract(double n1, double n2) {
- Logger logger = Logger.getLogger("calculator");
- logger.log(Level.FINEST, "Subtracting " + n1 + " from " + n2);
- return n1 - n2;
- }
-
-}