Remove unnecessary null check

This commit is contained in:
Vikash Tiwari
2018-10-26 10:17:04 +02:00
committed by Juergen Hoeller
parent 4faee165db
commit 8df3fd3f1d
@@ -201,7 +201,7 @@ public final class RequestMappingInfo implements RequestCondition<RequestMapping
return this.name;
}
else {
return (other.name != null ? other.name : null);
return other.name;
}
}