Mike Miller 85362cc
diff --git a/core/src/main/java/org/apache/accumulo/core/sample/impl/DataoutputHasher.java b/core/src/main/java/org/apache/accumulo/core/sample/impl/DataoutputHasher.java
Mike Miller 85362cc
index d243dfe..35a18e2 100644
Mike Miller 85362cc
--- a/core/src/main/java/org/apache/accumulo/core/sample/impl/DataoutputHasher.java
Mike Miller 85362cc
+++ b/core/src/main/java/org/apache/accumulo/core/sample/impl/DataoutputHasher.java
Mike Miller 85362cc
@@ -96,7 +96,7 @@ public class DataoutputHasher implements DataOutput {
Mike Miller 85362cc
 
Mike Miller 85362cc
   @Override
Mike Miller 85362cc
   public void writeChars(String s) throws IOException {
Mike Miller 85362cc
-    hasher.putString(s);
Mike Miller 85362cc
+    hasher.putString(s, StandardCharsets.UTF_8);
Mike Miller 85362cc
 
Mike Miller 85362cc
   }
Mike Miller 85362cc
 
Mike Miller 85362cc
diff --git a/server/gc/src/main/java/org/apache/accumulo/gc/replication/CloseWriteAheadLogReferences.java b/server/gc/src/main/java/org/apache/accumulo/gc/replication/CloseWriteAheadLogReferences.java
Mike Miller 85362cc
index 0c09396..c95f375 100644
Mike Miller 85362cc
--- a/server/gc/src/main/java/org/apache/accumulo/gc/replication/CloseWriteAheadLogReferences.java
Mike Miller 85362cc
+++ b/server/gc/src/main/java/org/apache/accumulo/gc/replication/CloseWriteAheadLogReferences.java
Mike Miller 85362cc
@@ -84,7 +84,7 @@ public class CloseWriteAheadLogReferences implements Runnable {
Mike Miller 85362cc
   public void run() {
Mike Miller 85362cc
     // As long as we depend on a newer Guava than Hadoop uses, we have to make sure we're compatible with
Mike Miller 85362cc
     // what the version they bundle uses.
Mike Miller 85362cc
-    Stopwatch sw = new Stopwatch();
Mike Miller 85362cc
+    Stopwatch sw = Stopwatch.createUnstarted();
Mike Miller 85362cc
 
Mike Miller 85362cc
     Connector conn;
Mike Miller 85362cc
     try {
Mike Miller 85362cc
diff --git a/server/master/src/main/java/org/apache/accumulo/master/replication/RemoveCompleteReplicationRecords.java b/server/master/src/main/java/org/apache/accumulo/master/replication/RemoveCompleteReplicationRecords.java
Mike Miller 85362cc
index e286371..ef082b9 100644
Mike Miller 85362cc
--- a/server/master/src/main/java/org/apache/accumulo/master/replication/RemoveCompleteReplicationRecords.java
Mike Miller 85362cc
+++ b/server/master/src/main/java/org/apache/accumulo/master/replication/RemoveCompleteReplicationRecords.java
Mike Miller 85362cc
@@ -83,7 +83,7 @@ public class RemoveCompleteReplicationRecords implements Runnable {
Mike Miller 85362cc
     WorkSection.limit(bs);
Mike Miller 85362cc
     bs.addScanIterator(cfg);
Mike Miller 85362cc
 
Mike Miller 85362cc
-    Stopwatch sw = new Stopwatch();
Mike Miller 85362cc
+    Stopwatch sw = Stopwatch.createUnstarted();
Mike Miller 85362cc
     long recordsRemoved = 0;
Mike Miller 85362cc
     try {
Mike Miller 85362cc
       sw.start();
Mike Miller 85362cc
diff --git a/test/src/main/java/org/apache/accumulo/test/functional/ScannerIT.java b/test/src/main/java/org/apache/accumulo/test/functional/ScannerIT.java
Mike Miller 85362cc
index 340a58e..b0ef0a7 100644
Mike Miller 85362cc
--- a/test/src/main/java/org/apache/accumulo/test/functional/ScannerIT.java
Mike Miller 85362cc
+++ b/test/src/main/java/org/apache/accumulo/test/functional/ScannerIT.java
Mike Miller 85362cc
@@ -75,7 +75,7 @@ public class ScannerIT extends AccumuloClusterHarness {
Mike Miller 85362cc
     s.setBatchSize(1);
Mike Miller 85362cc
     s.setRange(new Range());
Mike Miller 85362cc
 
Mike Miller 85362cc
-    Stopwatch sw = new Stopwatch();
Mike Miller 85362cc
+    Stopwatch sw = Stopwatch.createUnstarted();
Mike Miller 85362cc
     Iterator<Entry<Key,Value>> iterator = s.iterator();
Mike Miller 85362cc
 
Mike Miller 85362cc
     sw.start();