[java-support] branch master updated: Cleanup, formatting, typos
Tom Zeller
tzeller at dragonacea.biz
Wed Sep 28 08:51:54 EDT 2016
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch master
in repository java-support.
View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=60ce441c221d79623d9fe158a6808a90154701ae
The following commit(s) were added to refs/heads/master by this push:
new 60ce441 Cleanup, formatting, typos
60ce441 is described below
commit 60ce441c221d79623d9fe158a6808a90154701ae
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed Sep 28 08:51:51 2016 -0400
Cleanup, formatting, typos
---
.../utilities/java/support/annotation/ParameterName.java | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/main/java/net/shibboleth/utilities/java/support/annotation/ParameterName.java b/src/main/java/net/shibboleth/utilities/java/support/annotation/ParameterName.java
index d1b020b..64e69b6 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/annotation/ParameterName.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/annotation/ParameterName.java
@@ -27,15 +27,17 @@ import javax.annotation.Nonnull;
/**
* The Name of the parameter (aimed at constructors). This allows IOC frameworks
- * to inject parameters ino the constructor by name without the (java) name itself
- * becoming part of the API (and allowing in Java 7) things to be compiled -nodebug.
+ * to inject parameters into the constructor by name without the (Java) name itself
+ * becoming part of the API (and allowing in Java 8) things to be compiled -parameters.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, })
public @interface ParameterName {
- /** The name for this parameter.
+ /**
+ * The name for this parameter.
+ *
* @return the name.
*/
@Nonnull public String name();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list