Skip to content

Commit

Permalink
C#: Address review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnebel committed Apr 17, 2024
1 parent 4a4f9b3 commit bc0e580
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

private import semmle.code.csharp.dataflow.internal.ExternalFlow

/**
* A data flow sink node.
*/
abstract class SinkNode extends DataFlow::Node { }

/**
* Module that adds all sinks to `SinkNode`, excluding sinks for cryptography based
* queries, and queries where sinks are not succifiently explicit.
Expand Down Expand Up @@ -77,8 +82,3 @@ private module AllSinks {
SinkNodeExternal() { sinkNode(this, _) }
}
}

/**
* A data flow sink node.
*/
abstract class SinkNode extends DataFlow::Node { }
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

private import semmle.code.csharp.dataflow.internal.ExternalFlow

/**
* A data flow source node.
*/
abstract class SourceNode extends DataFlow::Node { }

/**
* Module that adds all sources to `SourceNode`, excluding source for cryptography based
* queries, and queries where sources are not succifiently explicit or mainly hardcoded constants.
Expand Down Expand Up @@ -70,8 +75,3 @@ private module AllSources {
SourceNodeExternal() { sourceNode(this, _) }
}
}

/**
* A data flow source node.
*/
abstract class SourceNode extends DataFlow::Node { }

0 comments on commit bc0e580

Please sign in to comment.