Skip to content

Commit 3be8fa5

Browse files
Java: PrintAst: Fix formatting
1 parent 28338eb commit 3be8fa5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

java/ql/src/printAst.ql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
* @tags ide-contextual-queries/print-ast
88
*/
99

10-
import java
11-
import semmle.code.java.PrintAst
12-
import definitions
10+
import java
11+
import semmle.code.java.PrintAst
12+
import definitions
1313

14-
/**
14+
/**
1515
* The source file to generate an AST from.
1616
*/
1717
external string selectedSourceFile();
@@ -25,4 +25,4 @@ class PrintAstConfigurationOverride extends PrintAstConfiguration {
2525
super.shouldPrint(e, l) and
2626
l.getFile() = getEncodedFile(selectedSourceFile())
2727
}
28-
}
28+
}

java/ql/src/semmle/code/Location.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class Top extends @top {
8787
cached
8888
string toString() { hasName(this, result) }
8989

90-
/**
90+
/**
9191
* Gets the name of a primary CodeQL class to which this element belongs.
9292
*
9393
* For most elements, this is simply the most precise syntactic category to

java/ql/src/semmle/code/java/PrintAst.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ class PrintAstConfigurationOverride extends PrintAstConfiguration {
1717
* TWEAK THIS PREDICATE AS NEEDED.
1818
*/
1919
override predicate shouldPrint(Element e, Location l) { super.shouldPrint(e, l) }
20-
}
20+
}

0 commit comments

Comments
 (0)