We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d55761f commit 71c230cCopy full SHA for 71c230c
src/main/java/org/scijava/maven/plugin/install/AbstractInstallMojo.java
@@ -310,7 +310,7 @@ private static boolean isIJ1Plugin(final File file) {
310
* SemVer version string
311
* @return The major version (according to SemVer) as {@code String}.
312
*/
313
- private String majorVersion( String v )
+ private static String majorVersion( String v )
314
{
315
final int dot = v.indexOf('.');
316
return dot < 0 ? v : v.substring(0, dot);
0 commit comments