Skip to content

Commit 99549e4

Browse files
committed
added Input::getFrom()
1 parent 11af4e8 commit 99549e4

File tree

1 file changed

+4
-0
lines changed
  • src/main/java/com/marginallyclever/nodegraphcore/port

1 file changed

+4
-0
lines changed

src/main/java/com/marginallyclever/nodegraphcore/port/Input.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ public void setFrom(Connection connection) {
2424
from = connection;
2525
}
2626

27+
public Connection getFrom() {
28+
return from;
29+
}
30+
2731
public void removeFrom(Connection connection) {
2832
if (from == connection) {
2933
from = null;

0 commit comments

Comments
 (0)