Make fields private where possible

This commit is contained in:
Phillip Webb
2014-01-21 16:21:00 -08:00
parent 0160760568
commit 43e54d38f7
169 changed files with 280 additions and 280 deletions

View File

@@ -26,7 +26,7 @@ import org.hamcrest.TypeSafeMatcher;
*/
public class ByteArrayStartsWith extends TypeSafeMatcher<byte[]> {
private byte[] bytes;
private final byte[] bytes;
public ByteArrayStartsWith(byte[] bytes) {
this.bytes = bytes;