Skip to content

Commit fcb02fa

Browse files
Update error-prone monorepo to v2.49.0 (open-telemetry#17655)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
1 parent 0a9f16b commit fcb02fa

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ val DEPENDENCY_BOMS = listOf(
3737

3838
val autoServiceVersion = "1.1.1"
3939
val autoValueVersion = "1.11.1"
40-
val errorProneVersion = "2.48.0"
40+
val errorProneVersion = "2.49.0"
4141
val byteBuddyVersion = "1.18.7"
4242
val asmVersion = "9.9.1"
4343
val jmhVersion = "1.37"

javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/field/VirtualFieldFindRewriter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ public MethodVisitor visitMethod(
8787
int access, String name, String descriptor, String signature, String[] exceptions) {
8888
MethodVisitor mv = super.visitMethod(access, name, descriptor, signature, exceptions);
8989
return new MethodVisitor(api, mv) {
90-
/** The most recent objects pushed to the stack. */
90+
// The most recent objects pushed to the stack.
9191
private final Object[] stack = {null, null};
9292

93-
/** Most recent instructions. */
93+
// Most recent instructions.
9494
private final int[] insnStack = {-1, -1, -1};
9595

9696
@Override
@@ -152,13 +152,13 @@ public void visitMethodInsn(
152152
}
153153
}
154154

155-
/** Tracking the most recently used opcodes to assert proper api usage. */
155+
// Tracking the most recently used opcodes to assert proper api usage.
156156
private void pushOpcode(int opcode) {
157157
System.arraycopy(insnStack, 0, insnStack, 1, insnStack.length - 1);
158158
insnStack[0] = opcode;
159159
}
160160

161-
/** Tracking the most recently pushed objects on the stack to assert proper api usage. */
161+
// Tracking the most recently pushed objects on the stack to assert proper api usage.
162162
private void pushStack(Object o) {
163163
System.arraycopy(stack, 0, stack, 1, stack.length - 1);
164164
stack[0] = o;

javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/field/VirtualFieldImplementationsGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public MethodVisitor visitMethod(
133133
}
134134
}
135135

136-
/**
136+
/*
137137
* Provides implementation for {@code realGet} method that looks like below.
138138
*
139139
* <blockquote>
@@ -186,7 +186,7 @@ private void generateRealGetMethod(String name) {
186186
mv.visitEnd();
187187
}
188188

189-
/**
189+
/*
190190
* Provides implementation for {@code realPut} method that looks like below.
191191
*
192192
* <blockquote>

0 commit comments

Comments
 (0)