diff --git a/dynamometer-infra/src/main/java/com/linkedin/dynamometer/DataNodeLayoutVersionFetcher.java b/dynamometer-infra/src/main/java/com/linkedin/dynamometer/DataNodeLayoutVersionFetcher.java deleted file mode 100644 index b90f8d3cfb..0000000000 --- a/dynamometer-infra/src/main/java/com/linkedin/dynamometer/DataNodeLayoutVersionFetcher.java +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Copyright 2017 LinkedIn Corporation. All rights reserved. Licensed under the BSD-2 Clause license. - * See LICENSE in the project root for license information. - */ -package com.linkedin.dynamometer; - -import org.apache.hadoop.hdfs.server.datanode.DataNodeLayoutVersion; - - -/** - * Simple utility class to print out the current DataNode layout version - */ -public class DataNodeLayoutVersionFetcher { - - public static void main(String[] args) { - System.out.printf("%d%n", DataNodeLayoutVersion.CURRENT_LAYOUT_VERSION); - } - -}