Skip to content

Commit

Permalink
Fix JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rfscholte committed Apr 11, 2021
1 parent 7e18263 commit 35d18ed
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
10 changes: 5 additions & 5 deletions maven-release-manager/src/main/mdo/release-descriptor.mdo
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@
<type>boolean</type>
<defaultValue>false</defaultValue>
<description>
NOTE : currently only implemented with svn scm. Enable a workaround to prevent issue due to svn client > 1.5.0
NOTE : currently only implemented with svn scm. Enable a workaround to prevent issue due to svn client &amp;gt; 1.5.0
(http://jira.codehaus.org/browse/SCM-406)
</description>
</field>
Expand Down Expand Up @@ -669,8 +669,8 @@
/**
* Method addReleaseVersion.
*
* @param key
* @param value
* @param projectId
* @param version
*/
public void addReleaseVersion( String projectId, String version )
{
Expand All @@ -689,8 +689,8 @@
/**
* Method addDevelopmentVersion.
*
* @param key
* @param value
* @param projectId
* @param version
*/
public void addDevelopmentVersion( String projectId, String version )
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.mockito.ArgumentMatcher;

/**
* JMock constraint to compare tags since it has no equals method.
* Mockito constraint to compare tags since it has no equals method.
*
* @author <a href="mailto:[email protected]">Brett Porter</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
import org.mockito.ArgumentMatcher;

/**
* Mockito constraint to compare tags since it has no equals method.
*
* @author <a href="mailto:[email protected]">olamy</a>
*/
public class IsScmBranchParametersEquals implements ArgumentMatcher<ScmBranchParameters>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@
import org.mockito.ArgumentMatcher;

/**
* JMock constraint to compare file sets since it has no equals method.
* Mockito constraint to compare file sets since it has no equals method.
*
* @author <a href="mailto:[email protected]">Brett Porter</a>
* @todo add an equals() method
*/
public class IsScmFileSetEquals implements ArgumentMatcher<ScmFileSet>
{
Expand All @@ -55,4 +54,6 @@ public boolean matches( ScmFileSet argument )
throw new RuntimeException(e.getMessage(), e);
}
}


}
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@
import org.mockito.ArgumentMatcher;

/**
* JMock constraint to compare tags since it has no equals method.
* Mockito constraint to compare tags since it has no equals method.
*
* @author <a href="mailto:[email protected]">Brett Porter</a>
* @todo add an equals() method
*/
public class IsScmTagEquals implements ArgumentMatcher<ScmTag>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
import org.mockito.ArgumentMatcher;

/**
* Mockito constraint to compare tags since it has no equals method.
*
* @author <a href="mailto:[email protected]">olamy</a>
*/
public class IsScmTagParametersEquals implements ArgumentMatcher<ScmTagParameters>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
import org.apache.maven.model.Scm;

/**
* Stub for a MavenProject with a flat structure.
* <p/>
* TODO: shouldn't need to do this, but the "stub" in the harness just throws away values you set.
* Just overriding the ones I need for this plugin.
* <p>Stub for a MavenProject with a flat structure.</p>
*
* <p>TODO: shouldn't need to do this, but the "stub" in the harness just throws away values you set.
* Just overriding the ones I need for this plugin.</p>
*
* @author <a href="mailto:[email protected]">Maria Odea Ching</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@
import org.apache.maven.model.Model;

/**
* Stub for MavenProject.
* <p/>
* TODO: shouldn't need to do this, but the "stub" in the harness just throws away values you set.
* Just overriding the ones I need for this plugin.
* <p>Stub for MavenProject.</p>
*
* <p>TODO: shouldn't need to do this, but the "stub" in the harness just throws away values you set.
* Just overriding the ones I need for this plugin.</p>
*
* @author <a href="mailto:[email protected]">Brett Porter</a>
* @noinspection ClassNameSameAsAncestorName
*/
public class MavenProjectStub
extends org.apache.maven.plugin.testing.stubs.MavenProjectStub
Expand Down

0 comments on commit 35d18ed

Please sign in to comment.