Skip to content

Commit

Permalink
Rust: Autoformat.
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffw0 committed Jan 17, 2025
1 parent 0ce1a1b commit d6c5c00
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions rust/ql/lib/codeql/rust/Concepts.qll
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ module CommandLineArgsSource {
* An externally modeled source for command line arguments.
*/
class ModeledCommandLineArgsSource extends CommandLineArgsSource::Range {
ModeledCommandLineArgsSource() {
sourceNode(this, "command-line-source")
}
ModeledCommandLineArgsSource() { sourceNode(this, "command-line-source") }
}

/**
Expand All @@ -99,9 +97,7 @@ module EnvironmentSource {
* An externally modeled source for data from the program's environment.
*/
class ModeledEnvironmentSource extends EnvironmentSource::Range {
ModeledEnvironmentSource() {
sourceNode(this, "environment-source")
}
ModeledEnvironmentSource() { sourceNode(this, "environment-source") }
}

/**
Expand All @@ -127,9 +123,7 @@ module RemoteSource {
* An externally modeled source for remote (network) data.
*/
class ModeledRemoteSource extends RemoteSource::Range {
ModeledRemoteSource() {
sourceNode(this, "remote-source")
}
ModeledRemoteSource() { sourceNode(this, "remote-source") }
}

/**
Expand Down

0 comments on commit d6c5c00

Please sign in to comment.