Automatic code cleanup.
PiperOrigin-RevId: 215251934
diff --git a/src/java_tools/junitrunner/java/com/google/testing/coverage/BitField.java b/src/java_tools/junitrunner/java/com/google/testing/coverage/BitField.java
index c9c9bd0..aa43801 100644
--- a/src/java_tools/junitrunner/java/com/google/testing/coverage/BitField.java
+++ b/src/java_tools/junitrunner/java/com/google/testing/coverage/BitField.java
@@ -62,15 +62,6 @@
}
/**
- * Clears a bit at the given index
- *
- * @param index bit index
- */
- public void clearBit(int index) {
- setBit(index, false);
- }
-
- /**
* Sets or clears a bit at the given index.
*
* @param index bit index
@@ -93,6 +84,15 @@
}
/**
+ * Clears a bit at the given index
+ *
+ * @param index bit index
+ */
+ public void clearBit(int index) {
+ setBit(index, false);
+ }
+
+ /**
* Checks whether a bit at the given index is set.
*
* @param index bit index
@@ -129,7 +129,8 @@
* @return this bit field
*/
public BitField or(BitField other) {
- byte[] largerArray, smallerArray;
+ byte[] largerArray;
+ byte[] smallerArray;
if (bytes.length < other.bytes.length) {
largerArray = other.bytes;
smallerArray = bytes;