Update visibility of fields in DependencyVector

This commit is contained in:
JeremyStar™ 2024-07-16 14:51:00 +02:00
parent bffe68c015
commit 8470d37f37
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -46,7 +46,7 @@ public class DependencyVector {
* @since v1-alpha1
*/
@NotNull
private final String identifier;
protected String identifier;
/**
* Determines which versioning system this vector uses.
@ -60,7 +60,7 @@ public class DependencyVector {
* @since v1-alpha1
*/
@NotNull
private final Class<? extends VersioningSystem> versioningSystem;
protected Class<? extends VersioningSystem> versioningSystem;
/**
* Contains the version of this vector.
@ -74,7 +74,7 @@ public class DependencyVector {
* @since v1-alpha1
*/
@NotNull
private final String version;
protected String version;
/**
* Contains all vectors this vector hard-depends on.
@ -88,7 +88,7 @@ public class DependencyVector {
* @since v1-alpha1
*/
@NotNull
private final List<@NotNull String> dependencies;
protected List<@NotNull String> dependencies;
/**
* Creates a new dependency vector.