[java-identity-provider] 02/03: Remove public keywords.

Scott Cantor cantor.2 at osu.edu
Mon Jun 12 17:47:17 UTC 2023


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=d063d1d84b8333281e84733c50e0747aee8fc652

commit d063d1d84b8333281e84733c50e0747aee8fc652
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Jun 12 13:43:19 2023 -0400

    Remove public keywords.
---
 .../main/java/net/shibboleth/idp/cli/CommandLineArguments.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/idp-cli/src/main/java/net/shibboleth/idp/cli/CommandLineArguments.java b/idp-cli/src/main/java/net/shibboleth/idp/cli/CommandLineArguments.java
index a2411f10c..858b65631 100644
--- a/idp-cli/src/main/java/net/shibboleth/idp/cli/CommandLineArguments.java
+++ b/idp-cli/src/main/java/net/shibboleth/idp/cli/CommandLineArguments.java
@@ -55,7 +55,7 @@ public interface CommandLineArguments {
      * 
      * @throws MalformedURLException if the URL constructed is invalid 
      */
-    @Nonnull public URL buildURL() throws MalformedURLException;
+    @Nonnull URL buildURL() throws MalformedURLException;
     
     /**
      * Builds the HTTP-Basic value to be used in the Authorization -header, containing username and password.
@@ -64,7 +64,7 @@ public interface CommandLineArguments {
      * 
      * @since 4.2.0
      */
-    @Nullable @NotEmpty public default String getBasicAuthHeader() {
+    @Nullable @NotEmpty default String getBasicAuthHeader() {
         return null;
     }
 
@@ -75,7 +75,7 @@ public interface CommandLineArguments {
      * 
      * @since 4.2.0
      */
-    @Nullable @NonnullElements @NotLive @Unmodifiable public default Map<String,String> getHeaders() {
+    @Nullable @NonnullElements @NotLive @Unmodifiable default Map<String,String> getHeaders() {
         return null;
     }
     
@@ -86,7 +86,7 @@ public interface CommandLineArguments {
      * 
      * @since 4.2.0
      */
-    @Nullable @NotEmpty public default String getMethod() {
+    @Nullable @NotEmpty default String getMethod() {
         return null;
     }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list