diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-07 09:13:17 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-07 09:13:17 +0000 |
commit | 9593b3612048dc207f532d21ba5c9844779801ed (patch) | |
tree | eaf85f8920672ef8a22c6ad2eff8253658adf7f7 | |
parent | f8f77f798d2fb316b5a7c7ee08e547a13ae0f472 (diff) |
Remove sysout print and add file missed from initial commit
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@772562 13f79535-47bb-0310-9956-ffa450edef68
2 files changed, 20 insertions, 1 deletions
diff --git a/java/sca/modules/node-impl2/src/main/java/org/apache/tuscany/sca/node/impl/NodeImpl.java b/java/sca/modules/node-impl2/src/main/java/org/apache/tuscany/sca/node/impl/NodeImpl.java index e9270b9555..62d2db240a 100644 --- a/java/sca/modules/node-impl2/src/main/java/org/apache/tuscany/sca/node/impl/NodeImpl.java +++ b/java/sca/modules/node-impl2/src/main/java/org/apache/tuscany/sca/node/impl/NodeImpl.java @@ -379,7 +379,6 @@ public class NodeImpl implements Node, Client, SCAClient { // Load the contribution
logger.log(Level.INFO, "Loading contribution: " + contributionURL);
- System.out.println("contributionProcessor " + contributionProcessor);
Contribution contribution = contributionProcessor.read(null, contributionURI, contributionURL);
contributions.add(contribution);
analyzeProblems();
diff --git a/java/sca/modules/node-impl2/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.URLArtifactProcessor b/java/sca/modules/node-impl2/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.URLArtifactProcessor new file mode 100644 index 0000000000..41d0ebe27d --- /dev/null +++ b/java/sca/modules/node-impl2/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.URLArtifactProcessor @@ -0,0 +1,20 @@ +# 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. + +# Implementation class for the artifact processor extension +org.apache.tuscany.sca.workspace.processor.impl.ContributionContentProcessor;type=.contribution/content,model=org.apache.tuscany.sca.contribution.Contribution +org.apache.tuscany.sca.workspace.processor.impl.ContributionInfoProcessor;type=.contribution/info |