diff --git a/core/src/main/java/hudson/model/AbstractBuild.java b/core/src/main/java/hudson/model/AbstractBuild.java index 51ea34a81cbde0fd802f0c3c3b86f9e5096a07b9..3ef355e4e02f10e4c9bdb98f4a5f3d2bd1c3e5a4 100644 --- a/core/src/main/java/hudson/model/AbstractBuild.java +++ b/core/src/main/java/hudson/model/AbstractBuild.java @@ -42,7 +42,7 @@ import java.util.ArrayList; public abstract class AbstractBuild

,R extends AbstractBuild> extends Run implements Queue.Executable { /** - * PluginName of the slave this project was built on. + * Name of the slave this project was built on. * Null or "" if built by the master. (null happens when we read old record that didn't have this information.) */ private String builtOn; diff --git a/core/src/main/java/hudson/model/DirectoryBrowserSupport.java b/core/src/main/java/hudson/model/DirectoryBrowserSupport.java index 3664001e93187974b7efce89c9a24cc7fe6684b9..79364f8cae3543a56ad42554c68d22269472c783 100644 --- a/core/src/main/java/hudson/model/DirectoryBrowserSupport.java +++ b/core/src/main/java/hudson/model/DirectoryBrowserSupport.java @@ -168,7 +168,7 @@ public final class DirectoryBrowserSupport { */ private final String href; /** - * PluginName of this path. Just the file name portion. + * Name of this path. Just the file name portion. */ private final String title; diff --git a/core/src/main/java/hudson/model/Node.java b/core/src/main/java/hudson/model/Node.java index 3fb1083c2997bf97167cd59a2e23f581c8865700..34682c339b394c10776581efe2069ff77d700150 100644 --- a/core/src/main/java/hudson/model/Node.java +++ b/core/src/main/java/hudson/model/Node.java @@ -14,7 +14,7 @@ import java.util.Set; */ public interface Node { /** - * PluginName of this node. + * Name of this node. * * @return * "" if this is master diff --git a/core/src/main/java/hudson/model/PeriodicWork.java b/core/src/main/java/hudson/model/PeriodicWork.java index 72af80af536684ecec782e156944d7eba3ca240b..fad06ad62d01f5bec337b871709e4a40b0662f7b 100644 --- a/core/src/main/java/hudson/model/PeriodicWork.java +++ b/core/src/main/java/hudson/model/PeriodicWork.java @@ -12,7 +12,7 @@ import java.util.logging.Logger; public abstract class PeriodicWork extends TimerTask { /** - * PluginName of the work. + * Name of the work. */ private final String name; private Thread thread; diff --git a/core/src/main/java/hudson/model/Slave.java b/core/src/main/java/hudson/model/Slave.java index e91c94fd67d21c240e9ebb60899be547c27ba8d2..8169ba472024cb768d5d6dfc3f349226cb1b7db8 100644 --- a/core/src/main/java/hudson/model/Slave.java +++ b/core/src/main/java/hudson/model/Slave.java @@ -49,7 +49,7 @@ import java.util.logging.Logger; */ public final class Slave implements Node, Serializable { /** - * PluginName of this slave node. + * Name of this slave node. */ protected final String name; @@ -108,7 +108,7 @@ public final class Slave implements Node, Serializable { getAssignedLabels(); // compute labels now if (name.equals("")) - throw new FormException("Invalid slave configuration. PluginName is empty", null); + throw new FormException("Invalid slave configuration. Name is empty", null); // this prevents the config from being saved when slaves are offline. // on a large deployment with a lot of slaves, some slaves are bound to be offline, diff --git a/core/src/main/java/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java b/core/src/main/java/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java index 1215e52be1c43b46d58c7017c744da570ed68648..41b41f9dfebccf4531fa55260047a0629500ea7b 100644 --- a/core/src/main/java/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java +++ b/core/src/main/java/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java @@ -55,7 +55,7 @@ import java.util.Vector; * <!ELEMENT msg (#PCDATA)> * <!-- File changed --> * <!ELEMENT file (name,revision,prevrevision?)> - * <!-- PluginName of the file --> + * <!-- Name of the file --> * <!ELEMENT name (#PCDATA)> * <!-- Revision number --> * <!ELEMENT revision (#PCDATA)>