Skip to content

Commit

Permalink
Fix getter/setter for transport property.
Browse files Browse the repository at this point in the history
  • Loading branch information
timpeeters committed Jun 24, 2024
1 parent 551ae83 commit 3c163dc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ public void setTimeout(Duration timeout) {
this.timeout = timeout;
}

public Transport getExporter() {
public Transport getTransport() {
return this.transport;
}

public void setExporter(Transport transport) {
public void setTransport(Transport transport) {
this.transport = transport;
}

Expand Down

0 comments on commit 3c163dc

Please sign in to comment.