Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/bin/mactime2/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ pub(crate) enum OutputFormat {
#[strum(serialize = "txt")]
Txt,

/// Javascript Object Notation
#[strum(serialize = "json")]
Json,

/// flow.record format used by `dissect` and `rdump`
#[strum(serialize = "record")]
Record,
Expand Down Expand Up @@ -99,8 +95,6 @@ impl From<Cli> for Mactime2Application {
None => {
if cli.csv_format {
OutputFormat::Csv
} else if cli.json_format {
OutputFormat::Json
} else {
OutputFormat::Txt
}
Expand Down