@@ -48,7 +48,7 @@ Example: Taint sink in the **java.sql** package
4848
4949In this example we will show how to model the argument of the **execute ** method as a SQL injection sink.
5050This 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.
5252
5353.. code-block :: java
5454
@@ -89,7 +89,7 @@ Example: Taint source from the **java.net** package
8989----------------------------------------------------
9090In this example we show how to model the return value from the **getInputStream ** method as a **remote ** source.
9191This 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.
9393
9494.. code-block :: java
9595
@@ -130,7 +130,7 @@ Example: Add flow through the **concat** method
130130------------------------------------------------
131131In this example we show how to model flow through a method for a simple case.
132132This 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.
134134
135135.. code-block :: java
136136
@@ -178,7 +178,7 @@ Example: Add flow through the **map** method
178178---------------------------------------------
179179In this example, we will see a more complex example of modeling flow through a method.
180180This 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.
182182
183183.. code-block :: java
184184
@@ -238,7 +238,7 @@ Example: Add a **neutral** method
238238----------------------------------
239239In this example we will show how to model the **now ** method as being neutral.
240240A 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.
242242
243243.. code-block :: java
244244
0 commit comments