Skip to content

Commit

Permalink
dev: fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
tinyAdapter committed Nov 12, 2024
1 parent 18844f8 commit adbc638
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ private void processTuple(MetaChunkRS metaChunk) {
return;
}

LocalDateTime actionTime = DateUtils.secondsSinceEpoch(tuple.getValueBySchema(this.actionTimeSchema).getInt());
LocalDateTime actionTime = DateUtils.secondsSinceEpoch(
tuple.getValueBySchema(this.actionTimeSchema).getInt());
// check whether its birthEvent is selected
if (!this.birthSelector.isUserSelected(userId)) {
boolean selected = this.birthSelector.selectEvent(userId, actionTime, this.tuple);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/** Enum for result type */
/** Enum for result type. */
public enum ResultType {
FLOAT("FLOAT"), INT("INT");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import com.nus.cool.core.cohort.ResultType;
import com.nus.cool.core.cohort.storage.CohortRet;
import com.nus.cool.core.util.ArrayUtil;

import java.io.File;
import java.io.IOException;
import java.nio.file.Paths;
Expand Down

0 comments on commit adbc638

Please sign in to comment.