mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 00:15:44 +01:00
VndMedia Type classes: Adds private constructor
This commit is contained in:
@@ -2,4 +2,7 @@ package sonia.scm.web;
|
|||||||
|
|
||||||
public class GitVndMediaType {
|
public class GitVndMediaType {
|
||||||
public static final String GIT_CONFIG = VndMediaType.PREFIX + "gitConfig" + VndMediaType.SUFFIX;
|
public static final String GIT_CONFIG = VndMediaType.PREFIX + "gitConfig" + VndMediaType.SUFFIX;
|
||||||
|
|
||||||
|
private GitVndMediaType() {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
package sonia.scm.web;
|
package sonia.scm.web;
|
||||||
|
|
||||||
import sonia.scm.web.VndMediaType;
|
|
||||||
|
|
||||||
public class HgVndMediaType {
|
public class HgVndMediaType {
|
||||||
public static final String HG_CONFIG = VndMediaType.PREFIX + "hgConfig" + VndMediaType.SUFFIX;
|
public static final String HG_CONFIG = VndMediaType.PREFIX + "hgConfig" + VndMediaType.SUFFIX;
|
||||||
|
|
||||||
|
private HgVndMediaType() {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user