Rename new methods in Version

This commit is contained in:
Paul Schaub 2023-04-17 15:29:06 +02:00
parent 1a4affde35
commit 84a01df4bd
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
3 changed files with 39 additions and 38 deletions

View file

@ -101,7 +101,7 @@ public class VersionExternal implements Version {
}
@Override
public int getSopSpecVersionNumber() {
public int getSopSpecRevisionNumber() {
String revision = getSopSpecVersion();
String firstLine;
if (revision.contains("\n")) {
@ -124,7 +124,7 @@ public class VersionExternal implements Version {
}
@Override
public String getSopSpecImplementationIncompletenessRemarks() {
public String getSopSpecImplementationRemarks() {
String revision = getSopSpecVersion();
if (revision.contains("\n")) {
String tail = revision.substring(revision.indexOf("\n") + 1).trim();