Skip to content

Commit d27316e

Browse files
Apply suggestions from code review
Co-authored-by: Marcono1234 <[email protected]>
1 parent 67e9f06 commit d27316e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
lgtm,codescanning
22
* Add support for version 5 of the Kryo serialzation/deserialization framework.
3-
* Add support for detecting safe uses of Kryo utilizing `KryoPool.Builder. (#4992)[https://github.com/github/codeql/issues/4992]
3+
* Add support for detecting safe uses of Kryo utilizing `KryoPool.Builder`. [#4992](https://github.com/github/codeql/issues/4992)

java/ql/src/semmle/code/java/frameworks/Kryo.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class KryoPoolBuilder extends RefType {
4747
}
4848

4949
/**
50-
* A Kryo pool builder method used a fluent API call chain.
50+
* A Kryo pool builder method used in a fluent API call chain.
5151
*/
5252
class KryoPoolBuilderMethod extends Method {
5353
KryoPoolBuilderMethod() {

java/ql/src/semmle/code/java/security/UnsafeDeserialization.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class SafeKryo extends DataFlow2::Configuration {
5757
}
5858

5959
/**
60-
* Holds when a funcitonal expression is used to create a `KryoPool.Builder`.
60+
* Holds when a functional expression is used to create a `KryoPool.Builder`.
6161
* Eg. `new KryoPool.Builder(() -> new Kryo())`
6262
*/
6363
private predicate stepKryoPoolBuilderFactoryArgToConstructor(

0 commit comments

Comments
 (0)