Skip to content

Commit 1eec067

Browse files
authored
Merge pull request #11294 from erik-krogh/fileDoc
QL: improve the "this block-comment should have been a QLDoc"-query
2 parents 3d4f64f + de2ebe3 commit 1eec067

File tree

29 files changed

+123
-36
lines changed

29 files changed

+123
-36
lines changed

cpp/ql/lib/semmle/code/cpp/security/TaintTracking.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* Support for tracking tainted data through the program. This is an alias for
33
* `semmle.code.cpp.ir.dataflow.DefaultTaintTracking` provided for backwards
44
* compatibility.

cpp/ql/src/jsf/4.09 Style/Naming.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* Common functions for implementing naming conventions
33
*
44
* Naming rules are the following:

csharp/ql/campaigns/Solorigate/lib/Solorigate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* Provides reusable predicates related to Solorigate
33
*/
44

csharp/ql/lib/experimental/code/csharp/Cryptography/NonCryptographicHashes.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* Predicates that help detect potential non-cryptographic hash functions
33
*
44
* By themselves, non-cryptographic functions are common and not dangerous

java/ql/lib/semmle/code/java/frameworks/Properties.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* Definitions related to `java.util.Properties`. */
1+
/** Definitions related to `java.util.Properties`. */
2+
23
import semmle.code.java.Type
34
private import semmle.code.java.dataflow.FlowSteps
45

java/ql/lib/semmle/code/java/frameworks/Rmi.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* Remote Method Invocation. */
1+
/** Remote Method Invocation. */
2+
23
import java
34

45
/** The interface `java.rmi.Remote`. */

java/ql/lib/semmle/code/java/frameworks/apache/Exec.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* Definitions related to the Apache Commons Exec library. */
1+
/** Definitions related to the Apache Commons Exec library. */
2+
23
import semmle.code.java.Type
34
import semmle.code.java.security.ExternalProcess
45

java/ql/lib/semmle/code/java/security/ExternalProcess.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* Definitions related to external processes. */
1+
/** Definitions related to external processes. */
2+
23
import semmle.code.java.Member
34

45
private module Instances {

java/ql/lib/semmle/code/java/security/RelativePaths.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* Detection of strings and arrays of strings containing relative paths. */
1+
/** Detection of strings and arrays of strings containing relative paths. */
2+
23
import java
34

45
/**

java/ql/lib/semmle/code/java/security/SqlUnescapedLib.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* Definitions used by `SqlUnescaped.ql`. */
1+
/** Definitions used by `SqlUnescaped.ql`. */
2+
23
import semmle.code.java.security.ControlledString
34
import semmle.code.java.dataflow.TaintTracking
45

0 commit comments

Comments
 (0)