[java-opensaml] branch master updated: Deprecated embedded boolean we don't use anywhere.
Scott Cantor
cantor.2 at osu.edu
Tue Sep 4 13:16:22 EDT 2018
This is an automated email from the git hooks/post-receive script.
scantor 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=c140fa019151bca0b32858de323d8166d8c1856c
The following commit(s) were added to refs/heads/master by this push:
new c140fa0 Deprecated embedded boolean we don't use anywhere.
c140fa0 is described below
commit c140fa019151bca0b32858de323d8166d8c1856c
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Sep 4 13:16:20 2018 -0400
Deprecated embedded boolean we don't use anywhere.
---
.../src/main/java/org/opensaml/messaging/context/BaseContext.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java b/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java
index 1e26a9c..2897d30 100644
--- a/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java
+++ b/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/BaseContext.java
@@ -277,7 +277,10 @@ public abstract class BaseContext implements Iterable<BaseContext> {
* Get whether the context auto-creates subcontexts by default.
*
* @return true if the context auto-creates subcontexts, false otherwise
+ *
+ * @deprecated
*/
+ @Deprecated
public boolean isAutoCreateSubcontexts() {
return autoCreateSubcontexts;
}
@@ -286,7 +289,10 @@ public abstract class BaseContext implements Iterable<BaseContext> {
* Set whether the context auto-creates subcontexts by default.
*
* @param autoCreate whether the context should auto-create subcontexts
+ *
+ * @deprecated
*/
+ @Deprecated
public void setAutoCreateSubcontexts(final boolean autoCreate) {
autoCreateSubcontexts = autoCreate;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list