mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
C#/Java: Rename the directories containing the model generator and tests.
This commit is contained in:
15
java/ql/test/utils/modelgenerator/dataflow/p/FluentAPI.java
Normal file
15
java/ql/test/utils/modelgenerator/dataflow/p/FluentAPI.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package p;
|
||||
|
||||
public final class FluentAPI {
|
||||
|
||||
public FluentAPI returnsThis(String input) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public class Inner {
|
||||
public FluentAPI notThis(String input) {
|
||||
return FluentAPI.this;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user