Skip to content

Commit

Permalink
Fix small style issues.
Browse files Browse the repository at this point in the history
Fixes #5795.

RELNOTES=n/a
PiperOrigin-RevId: 413459594
  • Loading branch information
netdpb authored and Google Java Core Libraries committed Dec 1, 2021
1 parent e64ad26 commit 9635e5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/** @author Max Ross */
public class FeatureSpecificTestSuiteBuilderTest extends TestCase {

static boolean testWasRun;
private static boolean testWasRun;

@Override
protected void setUp() throws Exception {
Expand All @@ -52,7 +52,7 @@ protected List<Class<? extends AbstractTester>> getTesters() {
}

public void testLifecycle() {
final boolean setUp[] = {false};
boolean[] setUp = {false};
Runnable setUpRunnable =
new Runnable() {
@Override
Expand All @@ -61,7 +61,7 @@ public void run() {
}
};

final boolean tearDown[] = {false};
boolean[] tearDown = {false};
Runnable tearDownRunnable =
new Runnable() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/** @author Max Ross */
public class FeatureSpecificTestSuiteBuilderTest extends TestCase {

static boolean testWasRun;
private static boolean testWasRun;

@Override
protected void setUp() throws Exception {
Expand All @@ -52,7 +52,7 @@ protected List<Class<? extends AbstractTester>> getTesters() {
}

public void testLifecycle() {
final boolean setUp[] = {false};
boolean[] setUp = {false};
Runnable setUpRunnable =
new Runnable() {
@Override
Expand All @@ -61,7 +61,7 @@ public void run() {
}
};

final boolean tearDown[] = {false};
boolean[] tearDown = {false};
Runnable tearDownRunnable =
new Runnable() {
@Override
Expand Down

0 comments on commit 9635e5d

Please sign in to comment.