Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc74a48 commit 2d90e7dCopy full SHA for 2d90e7d
1 file changed
csharp/ql/src/semmle/code/csharp/frameworks/system/xml/XPath.qll
@@ -32,18 +32,12 @@ module SystemXmlXPath {
32
}
33
34
/** Gets the `Compile` method. */
35
- csharp::Method getCompileMethod() {
36
- result = this.getAMethod("Compile")
37
- }
+ csharp::Method getCompileMethod() { result = this.getAMethod("Compile") }
38
39
/** Gets an `Evaluate` method. */
40
- csharp::Method getAnEvaluateMethod() {
41
- result = this.getAMethod("Evaluate")
42
+ csharp::Method getAnEvaluateMethod() { result = this.getAMethod("Evaluate") }
43
44
/** Gets a `Matches` method. */
45
- csharp::Method getAMatchesMethod() {
46
- result = this.getAMethod("Matches")
47
+ csharp::Method getAMatchesMethod() { result = this.getAMethod("Matches") }
48
49
0 commit comments