[java-opensaml COMMIT] /trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java
noreply at shibboleth.net
noreply at shibboleth.net
Fri Jan 27 00:48:31 GMT 2012
Author: putmanb
Date: Fri Jan 27 00:48:31 2012
New Revision: 2939
URL: http://svn.shibboleth.net/view/java-opensaml?rev=2939&view=rev
Log:
Fix some checkstyle warnings.
Modified:
trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java
Modified: trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java?rev=2939&r1=2938&r2=2939&view=diff
==============================================================================
--- trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java (original)
+++ trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java Fri Jan 27 00:48:31 2012
@@ -176,7 +176,7 @@
/**
* Add a subcontext to the current context.
*
- * @param subContext the subcontext to add
+ * @param subcontext the subcontext to add
* @param replace flag indicating whether to replace the existing instance of the subcontext if present
*
*/
@@ -223,7 +223,6 @@
/**
* Remove a subcontext from the current context.
*
- * @param <T> the type of subcontext being operated on
* @param subcontext the subcontext to remove
*/
public void removeSubcontext(BaseContext subcontext) {
@@ -263,7 +262,8 @@
* Clear the subcontexts of the current context.
*/
public void clearSubcontexts() {
- log.trace("Clearing all subcontexts from context with type '{}' id '{}'", this.getClass().getName(), this.getId());
+ log.trace("Clearing all subcontexts from context with type '{}' id '{}'",
+ this.getClass().getName(), this.getId());
for (BaseContext subcontext : subcontexts) {
subcontext.setParent(null);
}
More information about the commits
mailing list