forked from yegor256/rultor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yegor256#960 fixing Javadoc and inefficient regex use found by CR
- Loading branch information
1 parent
964f123
commit ec0efd7
Showing
4 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ | |
|
||
/** | ||
* Tests for ${@link ReleaseTag}. | ||
* | ||
* @author Armin Braun ([email protected]) | ||
* @version $Id$ | ||
* @since 1.62 | ||
|
@@ -46,7 +45,9 @@ public final class ReleaseTagTest { | |
|
||
/** | ||
* ReleaseTag can deny release for outdated, semantically correct versions. | ||
* @throws Exception In case of error. | ||
* It does however allow any version number, if it contains anything | ||
* other than digits and dots. | ||
* @throws Exception In case of error | ||
*/ | ||
@Test | ||
public void validatesReleaseVersion() throws Exception { | ||
|
@@ -72,7 +73,7 @@ public void validatesReleaseVersion() throws Exception { | |
|
||
/** | ||
* ReleaseTag can retrieve the latest release version in the repo. | ||
* @throws Exception In case of error. | ||
* @throws Exception In case of error | ||
*/ | ||
@Test | ||
public void getsReferenceVersion() throws Exception { | ||
|