Toggle navigation
Home
org.eclipse.che.api.languageserver.shared.lsapi.LocationDTO to org.eclipse.lsp4j.Location
No. of Instances - 16
No. of Commits - 1
No. of Projects - {'che'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Different)
Operation<List<LocationDTO>>
to
Operation<List<Location>>
Operation<List<LocationDTO>>
to
Operation<List<Location>>
Add or Remove Method invocation
promise.then(new Operation<List<Location>>(){ @Override public void apply( List<LocationDTO> arg) throws OperationException { if (arg.size() == 1) { presenter.onLocationSelected(arg.get(0)); } else { presenter.openLocation(promise); } } } )
to
promise.then(new Operation<List<Location>>(){ @Override public void apply( List<Location> arg) throws OperationException { if (arg.size() == 1) { presenter.onLocationSelected(arg.get(0)); } else { presenter.openLocation(promise); } } } )
promise.then(new Operation<List<Location>>(){ @Override public void apply( List<LocationDTO> arg) throws OperationException { showLocations(arg); } } )
to
promise.then(new Operation<List<Location>>(){ @Override public void apply( List<Location> arg) throws OperationException { showLocations(arg); } } )