Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/LocalStrings.properties?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/LocalStrings.properties (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/LocalStrings.properties Tue Jan 10 20:17:25 2017 @@ -30,7 +30,7 @@ jaasRealm.cachePrincipal=User Principal jaasRealm.checkPrincipal=Checking Principal "{0}" [{1}] jaasRealm.userPrincipalSuccess=Principal "{0}" is a valid user class. We will use this as the user Principal. jaasRealm.userPrincipalFailure=No valid user Principal found -jaasRealm.rolePrincipalAdd=Adding role Principal "{0}" to this user Principal''s roles +jaasRealm.rolePrincipalAdd=Adding role Principal "{0}" to this user Principal's roles jaasRealm.rolePrincipalSuccess={0} role Principal(s) found jaasRealm.rolePrincipalFailure=No valid role Principals found. jaasRealm.isInRole.start=Checking if user Principal "{0}" possesses role "{1}"
Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/RealmBase.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/RealmBase.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/RealmBase.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/realm/RealmBase.java Tue Jan 10 20:17:25 2017 @@ -492,7 +492,7 @@ public abstract class RealmBase extends if (log.isDebugEnabled()) { log.debug("Digest : " + clientDigest + " Username:" + username - + " ClientSigest:" + clientDigest + " nonce:" + nonce + + " ClientDigest:" + clientDigest + " nonce:" + nonce + " nc:" + nc + " cnonce:" + cnonce + " qop:" + qop + " realm:" + realm + "md5a2:" + md5a2 + " Server digest:" + serverDigest); @@ -914,7 +914,7 @@ public abstract class RealmBase extends } /** - * Convert an ArrayList to a SecurityContraint []. + * Convert an ArrayList to a SecurityConstraint []. */ private SecurityConstraint [] resultsToArray( ArrayList<SecurityConstraint> results) { Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/security/SecurityListener.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/security/SecurityListener.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/security/SecurityListener.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/security/SecurityListener.java Tue Jan 10 20:17:25 2017 @@ -94,7 +94,7 @@ public class SecurityListener implements * Returns the current list of operating system users not permitted to run * Tomcat. * - * @return A comma separated list of operating sytem user names. + * @return A comma separated list of operating system user names. */ public String getCheckedOsUsers() { if (checkedOsUsers.size() == 0) { Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/CGIServlet.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/CGIServlet.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/CGIServlet.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/CGIServlet.java Tue Jan 10 20:17:25 2017 @@ -1662,7 +1662,7 @@ public final class CGIServlet extends Ht try { errReaderThread.join(stderrTimeout); } catch (InterruptedException e) { - log.warn(sm.getString("cgiServlet.runReaderInterupt")); } + log.warn(sm.getString("cgiServlet.runReaderInterrupt")); } } if (proc != null){ proc.destroy(); Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java Tue Jan 10 20:17:25 2017 @@ -1910,7 +1910,7 @@ public class DefaultServlet conditionSatisfied = true; } - // If none of the given ETags match, 412 Precodition failed is + // If none of the given ETags match, 412 Precondition failed is // sent back if (!conditionSatisfied) { response.sendError Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/LocalStrings.properties?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/LocalStrings.properties (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/LocalStrings.properties Tue Jan 10 20:17:25 2017 @@ -28,7 +28,7 @@ cgiServlet.runFail=I/O problems processi cgiServlet.runHeaderReaderFail=I/O problems closing header reader cgiServlet.runInvalidStatus=Invalid status [{0}] cgiServlet.runOutputStreamFail=I/O problems closing output stream -cgiServlet.runReaderInterupt=Interupted waiting for stderr reader thread +cgiServlet.runReaderInterrupt=Interrupted waiting for stderr reader thread cgiServlet.runStdErr=stderr line: [{0}] cgiServlet.runStdErrCount=Received [{0}] lines on stderr cgiServlet.runStdErrFail=I/O problems with stderr Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java Tue Jan 10 20:17:25 2017 @@ -213,7 +213,7 @@ public abstract class ManagerBase extend /** * Frequency of the session expiration, and related manager operations. * Manager operations will be done once for the specified amount of - * backgrondProcess calls (ie, the lower the amount, the most often the + * backgroundProcess calls (ie, the lower the amount, the most often the * checks will occur). */ protected int processExpiresFrequency = 6; Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml Tue Jan 10 20:17:25 2017 @@ -134,7 +134,7 @@ writeable="false"/> <attribute name="sessionAttributeNameFilter" - descritpion="The string pattern used for including session attributes in distribution. Null means all attributes are included." + description="The string pattern used for including session attributes in distribution. Null means all attributes are included." type="java.lang.String"/> <attribute name="sessionAttributeValueClassNameFilter" @@ -334,7 +334,7 @@ writeable="false"/> <attribute name="sessionAttributeNameFilter" - descritpion="The string pattern used for including session attributes in distribution. Null means all attributes are included." + description="The string pattern used for including session attributes in distribution. Null means all attributes are included." type="java.lang.String"/> <attribute name="sessionAttributeValueClassNameFilter" Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java Tue Jan 10 20:17:25 2017 @@ -2261,8 +2261,8 @@ public class ContextConfig implements Li populateJavaClassCache(javaClass.getSuperclassName()); - for (String iterface : javaClass.getInterfaceNames()) { - populateJavaClassCache(iterface); + for (String interfaceName : javaClass.getInterfaceNames()) { + populateJavaClassCache(interfaceName); } } Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/LifecycleListenerRule.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/LifecycleListenerRule.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/LifecycleListenerRule.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/LifecycleListenerRule.java Tue Jan 10 20:17:25 2017 @@ -122,7 +122,7 @@ public class LifecycleListenerRule exten className = listenerClass; } - // Instantiate a new LifecyleListener implementation object + // Instantiate a new LifecycleListener implementation object Class<?> clazz = Class.forName(className); LifecycleListener listener = (LifecycleListener) clazz.newInstance(); Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ChannelException.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ChannelException.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ChannelException.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ChannelException.java Tue Jan 10 20:17:25 2017 @@ -31,7 +31,7 @@ import java.util.ArrayList; public class ChannelException extends Exception { private static final long serialVersionUID = 1L; /** - * Empty list to avoid reinstatiating lists + * Empty list to avoid reinstantiating lists */ protected static final FaultyMember[] EMPTY_LIST = new FaultyMember[0]; /* Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ErrorHandler.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ErrorHandler.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ErrorHandler.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/ErrorHandler.java Tue Jan 10 20:17:25 2017 @@ -29,7 +29,7 @@ package org.apache.catalina.tribes; public interface ErrorHandler { /** - * Invoked if the message is dispatched asynch, and an error occurs + * Invoked if the message is dispatched async, and an error occurs * @param x ChannelException - the error that happened * @param id - the unique id for the message * @see Channel#send(Member[], java.io.Serializable, int, ErrorHandler) Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/FragmentationInterceptor.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/FragmentationInterceptor.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/FragmentationInterceptor.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/FragmentationInterceptor.java Tue Jan 10 20:17:25 2017 @@ -35,9 +35,9 @@ import org.apache.catalina.tribes.io.XBy * and smaller messages can make it through. * * <br><b>Configuration Options</b><br> - * OrderInteceptor.expire=<milliseconds> - how long do we keep the fragments in memory and wait for the rest to arrive<b>default=60,000ms -> 60seconds</b> + * OrderInterceptor.expire=<milliseconds> - how long do we keep the fragments in memory and wait for the rest to arrive<b>default=60,000ms -> 60seconds</b> * This setting is useful to avoid OutOfMemoryErrors<br> - * OrderInteceptor.maxSize=<max message size> - message size in bytes <b>default=1024*100 (around a tenth of a MB)</b><br> + * OrderInterceptor.maxSize=<max message size> - message size in bytes <b>default=1024*100 (around a tenth of a MB)</b><br> * @author Filip Hanik * @version 1.0 */ Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java Tue Jan 10 20:17:25 2017 @@ -189,7 +189,7 @@ public class NonBlockingCoordinator exte synchronized (electionMutex) { MemberImpl local = (MemberImpl)getLocalMember(false); MemberImpl[] others = membership.getMembers(); - fireInterceptorEvent(new CoordinationEvent(CoordinationEvent.EVT_START_ELECT,this,"Election initated")); + fireInterceptorEvent(new CoordinationEvent(CoordinationEvent.EVT_START_ELECT,this,"Election initiated")); if ( others.length == 0 ) { this.viewId = new UniqueId(UUIDGenerator.randomUUID(false)); this.view = new Membership(local,AbsoluteOrder.comp, true); Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java Tue Jan 10 20:17:25 2017 @@ -41,8 +41,8 @@ import org.apache.catalina.tribes.io.XBy * and the queue might become rather large. If this is the case, then you might want to set * the value OrderInterceptor.maxQueue = 25 (meaning that we will never keep more than 25 messages in our queue) * <br><b>Configuration Options</b><br> - * OrderInteceptor.expire=<milliseconds> - if a message arrives out of order, how long before we act on it <b>default=3000ms</b><br> - * OrderInteceptor.maxQueue=<max queue size> - how much can the queue grow to ensure ordering. + * OrderInterceptor.expire=<milliseconds> - if a message arrives out of order, how long before we act on it <b>default=3000ms</b><br> + * OrderInterceptor.maxQueue=<max queue size> - how much can the queue grow to ensure ordering. * This setting is useful to avoid OutOfMemoryErrors<b>default=Integer.MAX_VALUE</b><br> * OrderInterceptor.forwardExpired=<boolean> - this flag tells the interceptor what to * do when a message has expired or the queue has grown larger than the maxQueue value. Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java Tue Jan 10 20:17:25 2017 @@ -170,7 +170,7 @@ public abstract class AbstractReplicated /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param initialCapacity int - the size of this map, see HashMap * @param loadFactor float - load factor, see HashMap Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/LazyReplicatedMap.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/LazyReplicatedMap.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/LazyReplicatedMap.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/LazyReplicatedMap.java Tue Jan 10 20:17:25 2017 @@ -57,7 +57,7 @@ import org.apache.juli.logging.LogFactor * each time the object gets replicated the entire object gets serialized, hence a call to <code>replicate(true)</code> * will replicate all objects in this map that are using this node as primary. * - * <br><br><b>REMBER TO CALL <code>breakdown()</code> or <code>finalize()</code> when you are done with the map to + * <br><br><b>REMEMBER TO CALL <code>breakdown()</code> or <code>finalize()</code> when you are done with the map to * avoid memory leaks.<br><br> * TODO implement periodic sync/transfer thread * @author Filip Hanik @@ -74,7 +74,7 @@ public class LazyReplicatedMap<K,V> exte /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param initialCapacity int - the size of this map, see HashMap * @param loadFactor float - load factor, see HashMap @@ -86,7 +86,7 @@ public class LazyReplicatedMap<K,V> exte /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param initialCapacity int - the size of this map, see HashMap */ @@ -97,7 +97,7 @@ public class LazyReplicatedMap<K,V> exte /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel */ public LazyReplicatedMap(MapOwner owner, Channel channel, long timeout, String mapContextName, ClassLoader[] cls) { @@ -107,7 +107,7 @@ public class LazyReplicatedMap<K,V> exte /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param terminate boolean - Flag for whether to terminate this map that failed to start. */ Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/ReplicatedMap.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/ReplicatedMap.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/ReplicatedMap.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/ReplicatedMap.java Tue Jan 10 20:17:25 2017 @@ -66,7 +66,7 @@ public class ReplicatedMap<K,V> extends /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param initialCapacity int - the size of this map, see HashMap * @param loadFactor float - load factor, see HashMap @@ -78,7 +78,7 @@ public class ReplicatedMap<K,V> extends /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param initialCapacity int - the size of this map, see HashMap */ @@ -89,7 +89,7 @@ public class ReplicatedMap<K,V> extends /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel */ public ReplicatedMap(MapOwner owner, Channel channel, long timeout, String mapContextName, ClassLoader[] cls) { @@ -99,7 +99,7 @@ public class ReplicatedMap<K,V> extends /** * Creates a new map * @param channel The channel to use for communication - * @param timeout long - timeout for RPC messags + * @param timeout long - timeout for RPC messages * @param mapContextName String - unique name for this map, to allow multiple maps per channel * @param terminate boolean - Flag for whether to terminate this map that failed to start. */ Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/bio/BioReplicationTask.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/bio/BioReplicationTask.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/bio/BioReplicationTask.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/bio/BioReplicationTask.java Tue Jan 10 20:17:25 2017 @@ -101,7 +101,7 @@ public class BioReplicationTask extends /** * Use send ack here if you want to ack the request to the remote * server before completing the request - * This is considered an asynchronized request + * This is considered an asynchronous request */ if (ChannelData.sendAckAsync(msgs[i].getOptions())) sendAck(Constants.ACK_COMMAND); try { Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReplicationTask.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReplicationTask.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReplicationTask.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReplicationTask.java Tue Jan 10 20:17:25 2017 @@ -197,7 +197,7 @@ public class NioReplicationTask extends /** * Use send ack here if you want to ack the request to the remote * server before completing the request - * This is considered an asynchronized request + * This is considered an asynchronous request */ if (ChannelData.sendAckAsync(msgs[i].getOptions())) sendAck(key,(WritableByteChannel)channel,Constants.ACK_COMMAND,saddr); try { Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java Tue Jan 10 20:17:25 2017 @@ -119,7 +119,7 @@ public final class ExtensionValidator { * file in the /META-INF/ directory of the application and all * MANIFEST.MF files in each JAR file located in the WEB-INF/lib * directory and creates an <code>ArrayList</code> of - * <code>ManifestResorce<code> objects. These objects are then passed + * <code>ManifestResource<code> objects. These objects are then passed * to the validateManifestResources method for validation. * * @param dirContext The JNDI root of the Web Application @@ -347,7 +347,7 @@ public final class ExtensionValidator { * Build this list of available extensions so that we do not have to * re-build this list every time we iterate through the list of required * extensions. All available extensions in all of the - * <code>MainfestResource</code> objects will be added to a + * <code>ManifestResource</code> objects will be added to a * <code>HashMap</code> which is returned on the first dependency list * processing pass. * Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/RemoteIpValve.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/RemoteIpValve.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/RemoteIpValve.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/RemoteIpValve.java Tue Jan 10 20:17:25 2017 @@ -758,7 +758,7 @@ public class RemoteIpValve extends Valve /** * <p> - * Header that holds the incoming protocol, usally named <code>X-Forwarded-Proto</code>. If <code>null</code>, request.scheme and + * Header that holds the incoming protocol, usually named <code>X-Forwarded-Proto</code>. If <code>null</code>, request.scheme and * request.secure will not be modified. * </p> * <p> Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/StuckThreadDetectionValve.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/StuckThreadDetectionValve.java?rev=1778191&r1=1778190&r2=1778191&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/StuckThreadDetectionValve.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/valves/StuckThreadDetectionValve.java Tue Jan 10 20:17:25 2017 @@ -65,7 +65,7 @@ public class StuckThreadDetectionValve e private final AtomicInteger stuckCount = new AtomicInteger(0); /** - * Keeps count of the number of stuck threads that have been interruoted + * Keeps count of the number of stuck threads that have been interrupted */ private AtomicLong interruptedThreadsCount = new AtomicLong(); @@ -82,7 +82,7 @@ public class StuckThreadDetectionValve e /** * The only references we keep to actual running Thread objects are in * this Map (which is automatically cleaned in invoke()s finally clause). - * That way, Threads can be GC'ed, eventhough the Valve still thinks they + * That way, Threads can be GC'ed, even though the Valve still thinks they * are stuck (caused by a long monitor interval) */ private final Map<Long, MonitoredThread> activeThreads = --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
