Skip to content

Commit ccb816e

Browse files
committed
Java: autoformat
1 parent 6355645 commit ccb816e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

java/ql/src/Security/CWE/CWE-190/ArithmeticTainted.ql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ module RemoteUserInputOverflow = TaintTracking::Make<RemoteUserInputOverflowConf
3737
module RemoteUserInputUnderflow = TaintTracking::Make<RemoteUserInputUnderflowConfig>;
3838

3939
module Flow =
40-
DataFlow::MergePathGraph<RemoteUserInputOverflow::PathNode, RemoteUserInputUnderflow::PathNode, RemoteUserInputOverflow::PathGraph, RemoteUserInputUnderflow::PathGraph>;
40+
DataFlow::MergePathGraph<RemoteUserInputOverflow::PathNode, RemoteUserInputUnderflow::PathNode,
41+
RemoteUserInputOverflow::PathGraph, RemoteUserInputUnderflow::PathGraph>;
4142

4243
import Flow::PathGraph
4344

java/ql/src/Security/CWE/CWE-200/TempDirLocalInformationDisclosure.ql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ module InsecureMethodPathGraph implements DataFlow::PathGraphSig<MethodAccessIns
261261
}
262262

263263
module Flow =
264-
DataFlow::MergePathGraph<TempDirSystemGetPropertyToCreate::PathNode, MethodAccessInsecureFileCreation, TempDirSystemGetPropertyToCreate::PathGraph, InsecureMethodPathGraph>;
264+
DataFlow::MergePathGraph<TempDirSystemGetPropertyToCreate::PathNode,
265+
MethodAccessInsecureFileCreation, TempDirSystemGetPropertyToCreate::PathGraph,
266+
InsecureMethodPathGraph>;
265267

266268
import Flow::PathGraph
267269

0 commit comments

Comments
 (0)