[java-shib-profile] branch main updated: Remove public keywords.
Scott Cantor
cantor.2 at osu.edu
Fri Jun 2 16:57:09 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-profile.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-profile.git;a=commit;h=6385e51cd7357e5d30a938cd38d292635b1516e5
The following commit(s) were added to refs/heads/main by this push:
new 6385e51 Remove public keywords.
6385e51 is described below
commit 6385e51cd7357e5d30a938cd38d292635b1516e5
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Jun 2 12:57:06 2023 -0400
Remove public keywords.
---
.../main/java/net/shibboleth/profile/config/ProfileConfiguration.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/shib-profile-api/src/main/java/net/shibboleth/profile/config/ProfileConfiguration.java b/shib-profile-api/src/main/java/net/shibboleth/profile/config/ProfileConfiguration.java
index 4ec38cc..c2b8663 100644
--- a/shib-profile-api/src/main/java/net/shibboleth/profile/config/ProfileConfiguration.java
+++ b/shib-profile-api/src/main/java/net/shibboleth/profile/config/ProfileConfiguration.java
@@ -48,7 +48,7 @@ public interface ProfileConfiguration extends IdentifiedComponent {
*
* @since 5.0.0
*/
- public int getDisallowedFeatures(@Nullable final ProfileRequestContext profileRequestContext);
+ int getDisallowedFeatures(@Nullable final ProfileRequestContext profileRequestContext);
/**
* Return true iff the input feature constant is disallowed.
@@ -60,6 +60,6 @@ public interface ProfileConfiguration extends IdentifiedComponent {
*
* @since 5.0.0
*/
- public boolean isFeatureDisallowed(@Nullable final ProfileRequestContext profileRequestContext, final int feature);
+ boolean isFeatureDisallowed(@Nullable final ProfileRequestContext profileRequestContext, final int feature);
}
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list