[java-identity-provider] branch master updated: IDP-1397: Removal of deprecated features
Brent Putman
putmanb at georgetown.edu
Tue Feb 18 20:25:23 EST 2020
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=b568691ce2f02a4d0bf28fc886b40c9ff26fed54
The following commit(s) were added to refs/heads/master by this push:
new b568691 IDP-1397: Removal of deprecated features
b568691 is described below
commit b568691ce2f02a4d0bf28fc886b40c9ff26fed54
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Tue Feb 18 20:24:08 2020 -0500
IDP-1397: Removal of deprecated features
---
idp-core/src/main/java/net/shibboleth/idp/cli/CLI.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/idp-core/src/main/java/net/shibboleth/idp/cli/CLI.java b/idp-core/src/main/java/net/shibboleth/idp/cli/CLI.java
index 7542549..6ec4572 100644
--- a/idp-core/src/main/java/net/shibboleth/idp/cli/CLI.java
+++ b/idp-core/src/main/java/net/shibboleth/idp/cli/CLI.java
@@ -71,7 +71,8 @@ public final class CLI {
errorAndExit("Argument class was not of the correct type");
}
argObject = (CommandLineArguments) obj;
- final JCommander jc = new JCommander(argObject, args);
+ final JCommander jc = new JCommander(argObject);
+ jc.parse(args);
if (argObject.isUsage()) {
jc.usage();
return;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list