Skip to content

Commit 021eedf

Browse files
author
Stephan Brandauer
committed
Java: format
1 parent 82fd0e4 commit 021eedf

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

java/ql/src/Telemetry/AutomodelFrameworkModeCharacteristics.qll

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,12 @@ abstract class FrameworkModeEndpoint extends TFrameworkModeEndpoint {
4848

4949
abstract Top asTop();
5050

51-
string toString() {
52-
result = this.asTop().toString()
53-
}
51+
string toString() { result = this.asTop().toString() }
5452

55-
Location getLocation() {
56-
result = this.asTop().getLocation()
57-
}
53+
Location getLocation() { result = this.asTop().getLocation() }
5854
}
5955

60-
class ExplicitParameterEndpoint extends FrameworkModeEndpoint, TExplicitParameter {
56+
class ExplicitParameterEndpoint extends FrameworkModeEndpoint, TExplicitParameter {
6157
Parameter param;
6258

6359
ExplicitParameterEndpoint() { this = TExplicitParameter(param) }
@@ -68,9 +64,7 @@ class ExplicitParameterEndpoint extends FrameworkModeEndpoint, TExplicitParamete
6864

6965
override Callable getEnclosingCallable() { result = param.getCallable() }
7066

71-
override Top asTop() {
72-
result = param
73-
}
67+
override Top asTop() { result = param }
7468
}
7569

7670
class QualifierEndpoint extends FrameworkModeEndpoint, TQualifier {
@@ -84,9 +78,7 @@ class QualifierEndpoint extends FrameworkModeEndpoint, TQualifier {
8478

8579
override Callable getEnclosingCallable() { result = callable }
8680

87-
override Top asTop() {
88-
result = callable
89-
}
81+
override Top asTop() { result = callable }
9082
}
9183

9284
/**

0 commit comments

Comments
 (0)