|
@@ -65,7 +65,7 @@ public class JuheMobileHandler implements MobileHandler {
|
|
|
String province = ObjectUtils.ifNull(response.getResult(), JuheLocationResponse.Location::getProvince);
|
|
|
String city = ObjectUtils.ifNull(response.getResult(), JuheLocationResponse.Location::getCity);
|
|
|
String address = Stream.of(province, city).filter(StringUtils::nonEmpty).collect(Collectors.joining());
|
|
|
- return StringUtils.ifEmpty(address, null);
|
|
|
+ return StringUtils.ifEmpty(address, (String) null);
|
|
|
}
|
|
|
|
|
|
@Override
|