[java-opensaml] branch master updated: Add missing public modifiers on new methods.
Brent Putman
putmanb at georgetown.edu
Fri Jun 23 17:13:49 EDT 2017
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=77c4c170592c5f47a5aa0c1b0584eefd7c656c22
The following commit(s) were added to refs/heads/master by this push:
new 77c4c17 Add missing public modifiers on new methods.
77c4c17 is described below
commit 77c4c170592c5f47a5aa0c1b0584eefd7c656c22
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Fri Jun 23 17:10:19 2017 -0400
Add missing public modifiers on new methods.
---
.../metadata/resolver/impl/AbstractReloadingMetadataResolver.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractReloadingMetadataResolver.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractReloadingMetadataResolver.java
index 19cb178..da4e714 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractReloadingMetadataResolver.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractReloadingMetadataResolver.java
@@ -176,7 +176,7 @@ public abstract class AbstractReloadingMetadataResolver extends AbstractBatchMet
*
* @return time the last successful refresh cycle occurred
*/
- @Nullable DateTime getLastSuccessfulRefresh() {
+ @Nullable public DateTime getLastSuccessfulRefresh() {
return lastSuccessfulRefresh;
}
@@ -185,7 +185,7 @@ public abstract class AbstractReloadingMetadataResolver extends AbstractBatchMet
*
* @return true if last refresh cycle was successful, false if not
*/
- @Nullable Boolean wasLastRefreshSuccess() {
+ @Nullable public Boolean wasLastRefreshSuccess() {
return wasLastRefreshSuccess;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list