Remove generics incompatible with Sun JDK6 on Linux
authorMathieu Baudier <mbaudier@argeo.org>
Wed, 4 Jun 2008 20:32:26 +0000 (20:32 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Wed, 4 Jun 2008 20:32:26 +0000 (20:32 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@1198 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.slc.core/src/main/java/org/argeo/slc/core/deploy/DeployedSystem.java

index 3b29c5ae4c907e9a40ab3a93cfa1317a44b24eef..58f5a0427f9b69dca8a2e14ea77be88da4c8203b 100644 (file)
@@ -3,13 +3,13 @@ package org.argeo.slc.core.deploy;
 import org.argeo.slc.core.build.Distribution;\r
 \r
 /** An instance of a software system. */\r
-public interface DeployedSystem<DISTRIBUTION extends Distribution, TARGET_DATA extends TargetData>\r
+public interface DeployedSystem\r
                extends TargetData {\r
        public String getDeployedSystemId();\r
 \r
-       public DISTRIBUTION getDistribution();\r
+       public Distribution getDistribution();\r
 \r
        public DeploymentData getDeploymentData();\r
 \r
-       public TARGET_DATA getTargetData();\r
+       public TargetData getTargetData();\r
 }\r