Skip to content

Commit

Permalink
add the missing enclosing interface (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwatson authored Feb 13, 2020
1 parent d0bd0b5 commit 1e7239e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public interface DoubleCounter extends Counter<BoundDoubleCounter> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundDoubleCounter extends BoundInstrument {
interface BoundDoubleCounter extends InstrumentWithBinding.BoundInstrument {
/**
* Adds the given {@code delta} to the current value. The values can be negative iff monotonic
* was set to {@code false}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public interface DoubleMeasure extends Measure<BoundDoubleMeasure> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundDoubleMeasure extends BoundInstrument {
interface BoundDoubleMeasure extends InstrumentWithBinding.BoundInstrument {
/**
* Records the given measurement, associated with the current {@code Context}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public interface LongCounter extends Counter<BoundLongCounter> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundLongCounter extends BoundInstrument {
interface BoundLongCounter extends InstrumentWithBinding.BoundInstrument {

/**
* Adds the given {@code delta} to the current value. The values can be negative iff monotonic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public interface LongMeasure extends Measure<BoundLongMeasure> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundLongMeasure extends BoundInstrument {
interface BoundLongMeasure extends InstrumentWithBinding.BoundInstrument {
/**
* Records the given measurement, associated with the current {@code Context}.
*
Expand Down

0 comments on commit 1e7239e

Please sign in to comment.