Skip to content

Commit

Permalink
Lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanConfluent committed Dec 8, 2020
1 parent 0c572b5 commit c4598b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static LocalCommands open(
+ "' config in the properties file."
);
}
File file = new File(directory, String.format("local_commands_%d_%s%s",
final File file = new File(directory, String.format("local_commands_%d_%s%s",
System.currentTimeMillis(), Integer.toHexString(RANDOM.nextInt()),
LOCAL_COMMANDS_FILE_SUFFIX));
return new LocalCommands(directory, ksqlEngine, LocalCommandsFile.createWriteable(file));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package io.confluent.ksql.rest.server;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.annotations.VisibleForTesting;
import io.confluent.ksql.util.KsqlException;
import java.io.Closeable;
import java.io.File;
Expand Down

0 comments on commit c4598b9

Please sign in to comment.