Skip to content

Commit 0929762

Browse files
committed
Move static var decl.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1637832 13f79535-47bb-0310-9956-ffa450edef68
1 parent fcca80b commit 0929762

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/codec/digest/DigestUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
*/
3434
public class DigestUtils {
3535

36-
private static final int STREAM_BUFFER_LENGTH = 1024;
37-
3836
/**
3937
* Read through an InputStream and returns the digest for the data
4038
*
@@ -816,4 +814,6 @@ public static MessageDigest updateDigest(final MessageDigest messageDigest, fina
816814
messageDigest.update(StringUtils.getBytesUtf8(valueToDigest));
817815
return messageDigest;
818816
}
817+
818+
private static final int STREAM_BUFFER_LENGTH = 1024;
819819
}

0 commit comments

Comments
 (0)