Skip to content

Commit

Permalink
mojohaus#637: Refactoring report renderers
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejj0 committed Oct 7, 2022
1 parent 806f535 commit ed0eb28
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public static Comparable comparableQualifier( String qualifier )
{
int i = QUALIFIERS_LIST.indexOf( qualifier );

return i == -1 ? QUALIFIERS_LIST.size() + "-" + qualifier : String.valueOf( i );
return i == -1 ? "0-" + qualifier : String.valueOf( i );
}

public int compareTo( Item item )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* under the License.
*/

import org.apache.maven.artifact.versioning.DefaultArtifactVersion;
import org.junit.Test;

import static org.hamcrest.MatcherAssert.assertThat;
Expand Down

0 comments on commit ed0eb28

Please sign in to comment.