Skip to content

Commit ac4aa4f

Browse files
Apply suggestions from code review
Co-authored-by: Ben Ahmady <[email protected]>
1 parent e87747c commit ac4aa4f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/codeql/codeql-language-guides/customizing-library-models-for-java.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Example: Taint sink in the **java.sql** package
4848

4949
In this example we will show how to model the argument of the **execute** method as a SQL injection sink.
5050
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.
5252

5353
.. code-block:: java
5454
@@ -89,7 +89,7 @@ Example: Taint source from the **java.net** package
8989
----------------------------------------------------
9090
In this example we show how to model the return value from the **getInputStream** method as a **remote** source.
9191
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.
9393

9494
.. code-block:: java
9595
@@ -130,7 +130,7 @@ Example: Add flow through the **concat** method
130130
------------------------------------------------
131131
In this example we show how to model flow through a method for a simple case.
132132
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.
134134

135135
.. code-block:: java
136136
@@ -178,7 +178,7 @@ Example: Add flow through the **map** method
178178
---------------------------------------------
179179
In this example, we will see a more complex example of modeling flow through a method.
180180
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.
182182

183183
.. code-block:: java
184184
@@ -238,7 +238,7 @@ Example: Add a **neutral** method
238238
----------------------------------
239239
In this example we will show how to model the **now** method as being neutral.
240240
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.
242242

243243
.. code-block:: java
244244

0 commit comments

Comments
 (0)