Update visibility of fields in DependencyVector
This commit is contained in:
parent
bffe68c015
commit
8470d37f37
1 changed files with 4 additions and 4 deletions
|
@ -46,7 +46,7 @@ public class DependencyVector {
|
||||||
* @since v1-alpha1
|
* @since v1-alpha1
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
private final String identifier;
|
protected String identifier;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines which versioning system this vector uses.
|
* Determines which versioning system this vector uses.
|
||||||
|
@ -60,7 +60,7 @@ public class DependencyVector {
|
||||||
* @since v1-alpha1
|
* @since v1-alpha1
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
private final Class<? extends VersioningSystem> versioningSystem;
|
protected Class<? extends VersioningSystem> versioningSystem;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains the version of this vector.
|
* Contains the version of this vector.
|
||||||
|
@ -74,7 +74,7 @@ public class DependencyVector {
|
||||||
* @since v1-alpha1
|
* @since v1-alpha1
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
private final String version;
|
protected String version;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains all vectors this vector hard-depends on.
|
* Contains all vectors this vector hard-depends on.
|
||||||
|
@ -88,7 +88,7 @@ public class DependencyVector {
|
||||||
* @since v1-alpha1
|
* @since v1-alpha1
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
private final List<@NotNull String> dependencies;
|
protected List<@NotNull String> dependencies;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new dependency vector.
|
* Creates a new dependency vector.
|
||||||
|
|
Loading…
Reference in a new issue