summaryrefslogtreecommitdiffstats
path: root/jrt
diff options
context:
space:
mode:
Diffstat (limited to 'jrt')
-rw-r--r--jrt/src/com/yahoo/jrt/DataValue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jrt/src/com/yahoo/jrt/DataValue.java b/jrt/src/com/yahoo/jrt/DataValue.java
index 17a1f374a88..8739e4b3817 100644
--- a/jrt/src/com/yahoo/jrt/DataValue.java
+++ b/jrt/src/com/yahoo/jrt/DataValue.java
@@ -24,7 +24,7 @@ public class DataValue extends Value
*
* @param src buffer where the value is stored
**/
- public DataValue(ByteBuffer src) {
+ DataValue(ByteBuffer src) {
int size = src.getInt();
value = new byte[size];
src.get(value);