File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
java/ql/test/utils/model-generator Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 22| p;Sources;true;socketStream;();;ReturnValue;remote |
33| p;Sources;true;sourceToParameter;(InputStream[],List);;Argument[0].ArrayElement;remote |
44| p;Sources;true;sourceToParameter;(InputStream[],List);;Argument[1].Element;remote |
5+ | p;Sources;true;wrappedSocketStream;();;ReturnValue;remote |
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ public InputStream socketStream() throws IOException {
1919 return socket .accept ().getInputStream ();
2020 }
2121
22+ public InputStream wrappedSocketStream () throws IOException {
23+ return socketStream ();
24+ }
25+
2226 public void sourceToParameter (InputStream [] streams , List <InputStream > otherStreams ) throws IOException {
2327 ServerSocket socket = new ServerSocket (123 );
2428 streams [0 ] = socket .accept ().getInputStream ();
You can’t perform that action at this time.
0 commit comments