Skip to content

Commit

Permalink
Fixed variable name mismatch with endpoints (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schuler authored Aug 1, 2022
1 parent cd045cf commit 2e7a748
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ public Parameters evaluate(
@OperationParam(name = "content", max = 1) String content) {

EndpointInfo remoteData = dataEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(dataEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteTerminology = terminologyEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(terminologyEndpoint) : null;
LibraryContentProvider contentProvider = remoteContent != null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ public Parameters evaluate(
@OperationParam(name = "terminologyEndpoint") Endpoint terminologyEndpoint) {

EndpointInfo remoteData = dataEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(dataEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteTerminology = terminologyEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(terminologyEndpoint) : null;
LibraryContentProvider contentProvider = remoteContent != null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ public Parameters evaluate(
@OperationParam(name = "content", max = 1) String content) {

EndpointInfo remoteData = dataEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(dataEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteTerminology = terminologyEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(terminologyEndpoint) : null;
LibraryContentProvider contentProvider = remoteContent != null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ public Parameters evaluate(
@OperationParam(name = "terminologyEndpoint") Endpoint terminologyEndpoint) {

EndpointInfo remoteData = dataEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(dataEndpoint) : null;
EndpointInfo remoteContent = contentEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(contentEndpoint) : null;
EndpointInfo remoteTerminology = terminologyEndpoint != null
? new EndpointConverter(new AdapterFactory()).getEndpointInfo(terminologyEndpoint) : null;
LibraryContentProvider contentProvider = remoteContent != null
Expand Down

0 comments on commit 2e7a748

Please sign in to comment.