summaryrefslogtreecommitdiffstats
path: root/node-admin
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-07-06 14:53:29 +0200
committerMartin Polden <mpolden@mpolden.no>2021-07-06 14:53:29 +0200
commit0c2f6f0e09e55110abba395596b9294f236a7ec1 (patch)
tree08938c9fa8c9f9baabf76678108839fb4bf6f150 /node-admin
parentde44c5dbaa2f8a3c5ddbef4d71f40ed696d3a119 (diff)
Remove doc no longer relevant with DNF
Diffstat (limited to 'node-admin')
-rw-r--r--node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/YumPackageName.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/YumPackageName.java b/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/YumPackageName.java
index 40a2c49b85a..24dfda0470f 100644
--- a/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/YumPackageName.java
+++ b/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/YumPackageName.java
@@ -73,15 +73,6 @@ public class YumPackageName {
architecture = packageName.architecture;
}
- /**
- * Set the epoch of the YUM package.
- *
- * <p>WARNING: Should only be invoked if the YUM package actually has an epoch. Typically
- * YUM packages doesn't have one explicitly set, and in case "0" will be used with
- * {@link #toVersionLockName()} (otherwise it fails), but it will be absent from an
- * install with {@link #toName()} (otherwise it fails). This typically means that
- * you should set this only if the epoch is != "0".</p>
- */
public Builder setEpoch(String epoch) { this.epoch = Optional.of(epoch); return this; }
public Builder setName(String name) { this.name = name; return this; }
public Builder setVersion(String version) { this.version = Optional.of(version); return this; }