diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java b/src/main/java/org/apache/commons/logging/LogFactory.java index a321d84..b4484ff 100644 --- a/src/main/java/org/apache/commons/logging/LogFactory.java +++ b/src/main/java/org/apache/commons/logging/LogFactory.java @@ -1636,7 +1636,7 @@ public abstract class LogFactory { // ---------------------------------------------------------------------- /** - * Set the configuration attribute with the specified name. Calling + * Sets the configuration attribute with the specified name. Calling * this with a {@code null} value is equivalent to calling * {@code removeAttribute(name)}. * diff --git a/src/main/java/org/apache/commons/logging/LogSource.java b/src/main/java/org/apache/commons/logging/LogSource.java index 1c90d8c..3201331 100644 --- a/src/main/java/org/apache/commons/logging/LogSource.java +++ b/src/main/java/org/apache/commons/logging/LogSource.java @@ -200,7 +200,7 @@ public class LogSource { } /** - * Set the log implementation/log implementation factory by class. The given class must implement {@link Log}, and provide a constructor that takes a single + * Sets the log implementation/log implementation factory by class. The given class must implement {@link Log}, and provide a constructor that takes a single * {@link String} argument (containing the name of the log). * * @param logclass class. @@ -219,7 +219,7 @@ public class LogSource { } /** - * Set the log implementation/log implementation factory by the name of the class. The given class must implement {@link Log}, and provide a constructor + * Sets the log implementation/log implementation factory by the name of the class. The given class must implement {@link Log}, and provide a constructor * that takes a single {@link String} argument (containing the name of the log). * * @param className class name. diff --git a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java index df35319..b2794f8 100644 --- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -1353,7 +1353,7 @@ public class LogFactoryImpl extends LogFactory { } /** - * Set the configuration attribute with the specified name. Calling + * Sets the configuration attribute with the specified name. Calling * this with a {@code null} value is equivalent to calling * {@code removeAttribute(name)}. *

diff --git a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java index d14807f..bdccf6e 100644 --- a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java +++ b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java @@ -595,7 +595,7 @@ public class SimpleLog implements Log, Serializable { } /** - * Set logging level. + * Sets logging level. * * @param currentLogLevel new logging level */ diff --git a/src/test/java/org/apache/commons/logging/AltHashtableTestCase.java b/src/test/java/org/apache/commons/logging/AltHashtableTestCase.java index 28b515f..21c40ab 100644 --- a/src/test/java/org/apache/commons/logging/AltHashtableTestCase.java +++ b/src/test/java/org/apache/commons/logging/AltHashtableTestCase.java @@ -41,7 +41,7 @@ public class AltHashtableTestCase extends TestCase { } /** - * Set up before each test. + * Sets up before each test. *

* This method ensures that the appropriate system property is defined * to force the LogFactory class to use the AltHashtable class as its diff --git a/src/test/java/org/apache/commons/logging/UserClass.java b/src/test/java/org/apache/commons/logging/UserClass.java index 60a8138..8401146 100644 --- a/src/test/java/org/apache/commons/logging/UserClass.java +++ b/src/test/java/org/apache/commons/logging/UserClass.java @@ -21,7 +21,7 @@ import org.apache.commons.logging.impl.LogFactoryImpl; public class UserClass { /** - * Set the ALLOW_FLAWED_CONTEXT feature on the LogFactoryImpl object + * Sets the ALLOW_FLAWED_CONTEXT feature on the LogFactoryImpl object * associated with this class' classloader. *

* Don't forget to set the context classloader to whatever it will be diff --git a/src/test/java/org/apache/commons/logging/config/FirstPriorityConfigTestCase.java b/src/test/java/org/apache/commons/logging/config/FirstPriorityConfigTestCase.java index 250f6e6..dc1c950 100644 --- a/src/test/java/org/apache/commons/logging/config/FirstPriorityConfigTestCase.java +++ b/src/test/java/org/apache/commons/logging/config/FirstPriorityConfigTestCase.java @@ -85,7 +85,7 @@ public class FirstPriorityConfigTestCase extends TestCase { } /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/config/PriorityConfigTestCase.java b/src/test/java/org/apache/commons/logging/config/PriorityConfigTestCase.java index 78774f3..8a7f9ca 100644 --- a/src/test/java/org/apache/commons/logging/config/PriorityConfigTestCase.java +++ b/src/test/java/org/apache/commons/logging/config/PriorityConfigTestCase.java @@ -103,7 +103,7 @@ public class PriorityConfigTestCase extends TestCase { } /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/jdk14/CustomConfigTestCase.java b/src/test/java/org/apache/commons/logging/jdk14/CustomConfigTestCase.java index 7d968ae..f4778bc 100644 --- a/src/test/java/org/apache/commons/logging/jdk14/CustomConfigTestCase.java +++ b/src/test/java/org/apache/commons/logging/jdk14/CustomConfigTestCase.java @@ -264,7 +264,7 @@ public class CustomConfigTestCase extends DefaultConfigTestCase { /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/jdk14/DefaultConfigTestCase.java b/src/test/java/org/apache/commons/logging/jdk14/DefaultConfigTestCase.java index 1645881..15d35e9 100644 --- a/src/test/java/org/apache/commons/logging/jdk14/DefaultConfigTestCase.java +++ b/src/test/java/org/apache/commons/logging/jdk14/DefaultConfigTestCase.java @@ -90,7 +90,7 @@ public class DefaultConfigTestCase extends TestCase { } /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/log4j/StandardTests.java b/src/test/java/org/apache/commons/logging/log4j/StandardTests.java index b1700da..1456e0d 100644 --- a/src/test/java/org/apache/commons/logging/log4j/StandardTests.java +++ b/src/test/java/org/apache/commons/logging/log4j/StandardTests.java @@ -119,7 +119,7 @@ public abstract class StandardTests extends TestCase { } /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/logkit/StandardTestCase.java b/src/test/java/org/apache/commons/logging/logkit/StandardTestCase.java index 9abc18c..aab3d10 100644 --- a/src/test/java/org/apache/commons/logging/logkit/StandardTestCase.java +++ b/src/test/java/org/apache/commons/logging/logkit/StandardTestCase.java @@ -104,7 +104,7 @@ public class StandardTestCase extends AbstractLogTest { // ----------------------------------------------------------- Test Methods /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/noop/NoOpLogTestCase.java b/src/test/java/org/apache/commons/logging/noop/NoOpLogTestCase.java index 5ec4b04..868d02a 100644 --- a/src/test/java/org/apache/commons/logging/noop/NoOpLogTestCase.java +++ b/src/test/java/org/apache/commons/logging/noop/NoOpLogTestCase.java @@ -62,7 +62,7 @@ public class NoOpLogTestCase extends AbstractLogTest } /** - * Set up instance variables required by this test case. + * Sets up instance variables required by this test case. */ @Override public void setUp() throws Exception { diff --git a/src/test/java/org/apache/commons/logging/pathable/ChildFirstTestCase.java b/src/test/java/org/apache/commons/logging/pathable/ChildFirstTestCase.java index 27f8b00..d7b75dc 100644 --- a/src/test/java/org/apache/commons/logging/pathable/ChildFirstTestCase.java +++ b/src/test/java/org/apache/commons/logging/pathable/ChildFirstTestCase.java @@ -43,7 +43,7 @@ import org.apache.commons.logging.PathableTestSuite; public class ChildFirstTestCase extends TestCase { /** - * Set up a custom classloader hierarchy for this test case. + * Sets up a custom classloader hierarchy for this test case. * The hierarchy is: *