Skip to content

Commit

Permalink
fix return value of getExistingLocationAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
hfutatzhanghb committed Oct 11, 2024
1 parent 7d6bff2 commit c5f26e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ private RemoteLocation getExistingLocationAsync(String src,
}
return null;
});
return asyncReturn(null);
return asyncReturn(RemoteLocation.class);
}

@Override // ClientProtocol
Expand Down

0 comments on commit c5f26e2

Please sign in to comment.