Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Whittington <Tim.Whittington@orionhealth.com>2013-07-05 14:15:04 +0400
committerTim Whittington <Tim.Whittington@orionhealth.com>2013-07-05 14:15:04 +0400
commiteda2d3d766d795f6b04db5f4f4ff4ba610d85be9 (patch)
tree6873e9e8f0cf2b6d12f60c9e85e37fc811883252 /core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java
parent24eae4b6795663f586ad80107599c928418a7af5 (diff)
Make buffer access explicit to avoid spurios compiler warning in Eclipse with shadowed field.
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java b/core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java
index 9f412b3e..9d8dc092 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/DeferredHash.java
@@ -126,7 +126,7 @@ class DeferredHash
{
void updateDigest(Digest d)
{
- d.update(buf, 0, count);
+ d.update(this.buf, 0, count);
}
}
}