Skip to content

Commit

Permalink
remove static from clone ds
Browse files Browse the repository at this point in the history
  • Loading branch information
krihy committed Sep 7, 2023
1 parent ef3016c commit 763ebcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public DebuggerSession(DebuggeeSession debuggeeSession, StartPLDebugReq req, boo
}
}

private static SingleConnectionDataSource cloneDataSource(SingleConnectionDataSource originDataSource) {
private SingleConnectionDataSource cloneDataSource(SingleConnectionDataSource originDataSource) {
SingleConnectionDataSource debuggerDataSource = new SingleConnectionDataSource();
debuggerDataSource.setUrl(originDataSource.getUrl());
debuggerDataSource.setUsername(originDataSource.getUsername());
Expand Down

0 comments on commit 763ebcc

Please sign in to comment.