Skip to content

Commit

Permalink
Add the enclosing interface references to remove javadoc errors (open…
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwatson authored and DotSpy committed Feb 21, 2020
1 parent 5dfd9cd commit 71f2456
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ BoundInstrument newBinding(Batcher batcher) {
return new BoundInstrument(isMonotonic(), batcher);
}

static final class BoundInstrument extends AbstractBoundInstrument implements BoundDoubleCounter {
static final class BoundInstrument extends AbstractBoundInstrument
implements DoubleCounter.BoundDoubleCounter {

private final boolean monotonic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ BoundInstrument newBinding(Batcher batcher) {
return new BoundInstrument(isAbsolute(), batcher);
}

static final class BoundInstrument extends AbstractBoundInstrument implements BoundDoubleMeasure {
static final class BoundInstrument extends AbstractBoundInstrument
implements DoubleMeasure.BoundDoubleMeasure {

private final boolean absolute;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ BoundInstrument newBinding(Batcher batcher) {
return new BoundInstrument(isMonotonic(), batcher);
}

static final class BoundInstrument extends AbstractBoundInstrument implements BoundLongCounter {
static final class BoundInstrument extends AbstractBoundInstrument
implements LongCounter.BoundLongCounter {

private final boolean monotonic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ BoundInstrument newBinding(Batcher batcher) {
return new BoundInstrument(isAbsolute(), batcher);
}

static final class BoundInstrument extends AbstractBoundInstrument implements BoundLongMeasure {
static final class BoundInstrument extends AbstractBoundInstrument
implements LongMeasure.BoundLongMeasure {

private final boolean absolute;

Expand Down

0 comments on commit 71f2456

Please sign in to comment.