Skip to content

Commit

Permalink
added Input::getFrom()
Browse files Browse the repository at this point in the history
  • Loading branch information
i-make-robots committed Jan 28, 2025
1 parent 11af4e8 commit 99549e4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ public void setFrom(Connection connection) {
from = connection;
}

public Connection getFrom() {
return from;
}

public void removeFrom(Connection connection) {
if (from == connection) {
from = null;
Expand Down

0 comments on commit 99549e4

Please sign in to comment.