mirror of
https://github.com/github/codeql.git
synced 2026-04-22 07:15:15 +02:00
Java: fix a comment
This commit is contained in:
@@ -7,7 +7,12 @@ import java.io.OutputStream;
|
||||
public class Files {
|
||||
public static void copy(
|
||||
Path source, // a positive example because a manual model exists
|
||||
OutputStream out // a candidate. NB: may be worthwhile to implement the same behavior as in application mode where out
|
||||
OutputStream out /* a candidate. NB: may be worthwhile to implement the
|
||||
same behavior as in application mode where out would not be a
|
||||
candidate because there already is a model for another parameter of
|
||||
the same method and we assume that methods are always modeled
|
||||
completely.
|
||||
*/
|
||||
) throws IOException {
|
||||
// ...
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user