Skip to content

Commit aff47c9

Browse files
committed
C#: Tidy up whitespace.
1 parent 62fb693 commit aff47c9

File tree

1 file changed

+13
-13
lines changed
  • csharp/ql/src/semmle/code/csharp/frameworks/system/web

1 file changed

+13
-13
lines changed

csharp/ql/src/semmle/code/csharp/frameworks/system/web/WebPages.qll

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ class SystemWebWebPagesWebPageExecutingBaseClass extends Class {
1919
}
2020
}
2121

22-
/**
23-
* This class describes any class that derives from System.Web.WebPages.WebPageExecutingBase
24-
*/
22+
/** A class that derives from `System.Web.WebPages.WebPageExecutingBase`. */
2523
class WebPageClass extends Class {
26-
WebPageClass () {
27-
this.getBaseClass*() instanceof SystemWebWebPagesWebPageExecutingBaseClass
28-
}
29-
30-
Method getWriteLiteralMethod() {
24+
WebPageClass () {
25+
this.getBaseClass*() instanceof SystemWebWebPagesWebPageExecutingBaseClass
26+
}
27+
28+
/** Gets the `WriteLiteral` method. */
29+
Method getWriteLiteralMethod() {
3130
result = getAMethod("WriteLiteral")
32-
}
33-
34-
Method getWriteLiteralToMethod() {
31+
}
32+
33+
/** Gets the `WriteLiteralTo` method. */
34+
Method getWriteLiteralToMethod() {
3535
result = getAMethod("WriteLiteralTo")
36-
}
37-
}
36+
}
37+
}

0 commit comments

Comments
 (0)