From: <fle...@us...> - 2006-12-04 18:59:50
|
Revision: 489 http://svn.sourceforge.net/magicmap/?rev=489&view=rev Author: flederohr Date: 2006-12-04 10:59:19 -0800 (Mon, 04 Dec 2006) Log Message: ----------- using Version as return type Modified Paths: -------------- trunk/magicmapclient/test/net/sf/magicmap/plugin/util/ArtifactRepositoryTest.java Modified: trunk/magicmapclient/test/net/sf/magicmap/plugin/util/ArtifactRepositoryTest.java =================================================================== --- trunk/magicmapclient/test/net/sf/magicmap/plugin/util/ArtifactRepositoryTest.java 2006-11-30 20:29:03 UTC (rev 488) +++ trunk/magicmapclient/test/net/sf/magicmap/plugin/util/ArtifactRepositoryTest.java 2006-12-04 18:59:19 UTC (rev 489) @@ -12,6 +12,7 @@ import net.sf.magicmap.artifact.ArtifactRepository; import net.sf.magicmap.artifact.IArtifact; +import net.sf.magicmap.artifact.Version; import junit.framework.TestCase; @@ -24,9 +25,9 @@ IArtifact artifact = new IArtifact(){ - public String getVersion(){ + public Version getVersion(){ // TODO Auto-generated method stub - return "1.5.3"; + return new Version("1.3.5"); } public String getArtifactId(){ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |