Skip to content

Commit c0b96a2

Browse files
Addressing review comment on camelcasing for one of the variable.
1 parent 7e0439e commit c0b96a2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

firebase-perf/src/test/java/com/google/testing/timing/FakeDirectExecutorService.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/** Fake executor service that simply executes the runnable in the same thread. */
2222
public class FakeDirectExecutorService extends AbstractExecutorService {
2323

24-
private boolean IsShutdown = false;
24+
private boolean isShutdown = false;
2525

2626
public void execute(Runnable command) {
2727
command.run();
@@ -34,22 +34,22 @@ public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedE
3434

3535
@Override
3636
public boolean isShutdown() {
37-
return IsShutdown;
37+
return isShutdown;
3838
}
3939

4040
@Override
4141
public void shutdown() {
42-
IsShutdown = true;
42+
isShutdown = true;
4343
}
4444

4545
@Override
4646
public List<Runnable> shutdownNow() {
47-
IsShutdown = true;
47+
isShutdown = true;
4848
return Arrays.asList();
4949
}
5050

5151
@Override
5252
public boolean isTerminated() {
53-
return IsShutdown;
53+
return isShutdown;
5454
}
5555
}

0 commit comments

Comments
 (0)