Skip to content

Commit 97b7e5d

Browse files
committed
Style police
1 parent 8862fb3 commit 97b7e5d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/codec/digest/CryptTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ public void testStored() { // From Javadoc
6868
}
6969

7070
// Helper method
71-
private void startsWith(String string, String prefix){
71+
private void startsWith(String string, String prefix) {
7272
assertTrue(string.startsWith(prefix), string + " should start with " + prefix);
7373
}
7474
@Test
7575
public void testType() {
76-
startsWith(Crypt.crypt("secret", "xxxx"),"xx");
76+
startsWith(Crypt.crypt("secret", "xxxx"), "xx");
7777
startsWith(Crypt.crypt("secret", "$1$xxxx"), "$1$xxxx$");
7878
startsWith(Crypt.crypt("secret", "$5$xxxx"), "$5$xxxx$");
7979
startsWith(Crypt.crypt("secret", "$6$xxxx"), "$6$xxxx$");

0 commit comments

Comments
 (0)