Skip to content

Commit 93a2d0e

Browse files
cushonglide-copybara-robot
authored andcommitted
Fix parameter comments that don't match the formal parameter name
PiperOrigin-RevId: 324713821
1 parent eb30d52 commit 93a2d0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instrumentation/src/androidTest/java/com/bumptech/glide/test/BitmapRegressionTester.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ private SplitBySdk getSplitBySdkValues() {
8787
SplitBySdk result;
8888
try {
8989
Method method =
90-
testClass.getMethod(testName.getMethodName(), /*parameterTypes=*/ (Class[]) null);
90+
testClass.getMethod(testName.getMethodName(), /* parameterTypes...= */ (Class[]) null);
9191
result = method.getAnnotation(SplitBySdk.class);
9292
} catch (NoSuchMethodException e) {
9393
throw new RuntimeException(e);

0 commit comments

Comments
 (0)