@@ -48,7 +48,7 @@ Example: Taint sink in the **java.sql** package
48
48
49
49
In this example we will show how to model the argument of the **execute ** method as a SQL injection sink.
50
50
This is the **execute ** method in the **Statement ** class, which is located in the **java.sql ** package.
51
- Please note that this sink is already added to the CodeQL Java analysis.
51
+ Note that this sink is already added to the CodeQL Java analysis.
52
52
53
53
.. code-block :: java
54
54
@@ -89,7 +89,7 @@ Example: Taint source from the **java.net** package
89
89
----------------------------------------------------
90
90
In this example we show how to model the return value from the **getInputStream ** method as a **remote ** source.
91
91
This is the **getInputStream ** method in the **Socket ** class, which is located in the **java.net ** package.
92
- Please note that this source is already added to the CodeQL Java analysis.
92
+ Note that this source is already added to the CodeQL Java analysis.
93
93
94
94
.. code-block :: java
95
95
@@ -130,7 +130,7 @@ Example: Add flow through the **concat** method
130
130
------------------------------------------------
131
131
In this example we show how to model flow through a method for a simple case.
132
132
This pattern covers many of the cases where we need to define flow through a method.
133
- Please note that the flow through the **concat ** method is already added to the CodeQL Java analysis.
133
+ Note that the flow through the **concat ** method is already added to the CodeQL Java analysis.
134
134
135
135
.. code-block :: java
136
136
@@ -178,7 +178,7 @@ Example: Add flow through the **map** method
178
178
---------------------------------------------
179
179
In this example, we will see a more complex example of modeling flow through a method.
180
180
This pattern shows how to model flow through higher order methods and collection types.
181
- Please note that the flow through the **map ** method is already added to the CodeQL Java analysis.
181
+ Note that the flow through the **map ** method is already added to the CodeQL Java analysis.
182
182
183
183
.. code-block :: java
184
184
@@ -238,7 +238,7 @@ Example: Add a **neutral** method
238
238
----------------------------------
239
239
In this example we will show how to model the **now ** method as being neutral.
240
240
A neutral model is used to define that there is no flow through a method.
241
- Please note that the neutral model for the **now ** method is already added to the CodeQL Java analysis.
241
+ Note that the neutral model for the **now ** method is already added to the CodeQL Java analysis.
242
242
243
243
.. code-block :: java
244
244
0 commit comments