Skip to content

Commit

Permalink
Set proper since tag version
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Jun 13, 2023
1 parent a0d2f38 commit d29c386
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public interface NamedLockFactory {
* <p>
* The default implementation merely does what happened before: adds no extra information.
*
* @since TBD
* @since 1.9.11
*/
default <E extends Throwable> E onFailure(E failure) {
return failure;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public abstract class NamedLockFactorySupport implements NamedLockFactory {
/**
* System property key to enable locking diagnostic collection.
*
* @since TBD
* @since 1.9.11
*/
private static final boolean DIAGNOSTIC_ENABLED = Boolean.getBoolean("aether.named.diagnostic.enabled");

Expand All @@ -60,7 +60,7 @@ public NamedLockFactorySupport(boolean diagnosticEnabled) {
/**
* Returns {@code true} if factory diagnostic collection is enabled.
*
* @since TBD
* @since 1.9.11
*/
public boolean isDiagnosticEnabled() {
return diagnosticEnabled;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected void doClose() {
/**
* Returns the diagnostic state (if collected) or empty map, never {@code null}.
*
* @since TBD
* @since 1.9.11
*/
public Map<Thread, Deque<String>> diagnosticState() {
if (diagnosticState != null) {
Expand Down

0 comments on commit d29c386

Please sign in to comment.