Skip to content

Commit

Permalink
Fix lint violation.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed Nov 5, 2024
1 parent acfef92 commit cc7586e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@
*/
public class ClpIrFileAppender extends AbstractAppender implements Flushable {
public static final String PLUGIN_NAME = "ClpIrFileAppender";
private static final int estimatedFormattedTimestampLength = 25; // e.g., "2024-11-05T14:04:24+05:30"

// Example format: "2024-11-05T14:04:24+05:30"
private static final int estimatedFormattedTimestampLength = 25;
private long uncompressedSizeInBytes = 0;

private AbstractClpIrOutputStream clpIrOutputStream;
Expand Down

0 comments on commit cc7586e

Please sign in to comment.