summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-04-01 12:04:08 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-04-01 12:04:08 +0000
commitec6432827d0edf03a4527574eedf1c64c25fe579 (patch)
treed72daf230b0807c1b34b1c726a2609c0c387cdd8 /sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java
parent6a3e3a326ffb2bf53f89782373aa9f2d9c0a7015 (diff)
Delete the old samples in unreleased that have been moved back to trunk
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1087667 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java')
-rw-r--r--sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java b/sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java
deleted file mode 100644
index 089b1a4290..0000000000
--- a/sca-java-2.x/trunk/unreleased/samples/helloworld-contribution/src/main/java/sample/HelloworldImpl.java
+++ /dev/null
@@ -1,27 +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 sample;
-
-public class HelloworldImpl implements Helloworld {
-
- public String sayHello(String name) {
- return "Hello " + name;
- }
-
-}