Skip to content

Commit 176ca73

Browse files
committed
Rmoved 'api private' from concerns.
1 parent a1cbc13 commit 176ca73

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

lib/concurrent/concern/dereferenceable.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ module Concern
88
# `Dereferenceable` mixin module.
99
#
1010
# @!macro copy_options
11-
#
12-
# @api private
1311
module Dereferenceable
1412

1513
# Return the value this object represents after applying the options specified

lib/concurrent/concern/logging.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Concern
55

66
# Include where logging is needed
77
#
8-
# @api private
8+
# @!visibility private
99
module Logging
1010
include Logger::Severity
1111

lib/concurrent/concern/obligation.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
module Concurrent
99
module Concern
1010

11-
# @api private
1211
module Obligation
1312
include Concern::Dereferenceable
1413
include Concern::Deprecation

lib/concurrent/concern/observable.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ module Concern
4747
# `obs` is wrong because the variable `@count` can be accessed by different
4848
# threads at the same time, so it should be synchronized (using either a Mutex
4949
# or an AtomicFixum)
50-
#
51-
# @api private
5250
module Observable
5351

5452
# @return [Object] the added observer

0 commit comments

Comments
 (0)