Skip to content

Commit 520b89a

Browse files
committed
Spotbugs fix
1 parent b012387 commit 520b89a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/AbstractReadOnlyController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ public static void manageActiveClusterIdFile(boolean readOnlyEnabled, MasterFile
7373
LOG.debug(
7474
"Active cluster file data does not match expected data. "
7575
+ "Not deleting the file to avoid potential inconsistency. "
76-
+ "Actual data: {}, Expected data: {}",
77-
new String(actualClusterFileData), new String(expectedClusterFileData));
76+
+ "Actual data: {}, Expected data: {}", actualClusterFileData,
77+
expectedClusterFileData);
7878
}
7979
} catch (FileNotFoundException e) {
8080
LOG.debug("Active cluster file does not exist at: {}. No need to delete.",

0 commit comments

Comments
 (0)