public static PoolInfoHtml getPoolInfoHtml(
Map<PoolInfo, PoolInfo> redirects,
PoolInfo poolInfo) {
String redirectAttributes = null;
if (redirects != null) {
PoolInfo destination = redirects.get(poolInfo);
if (destination != null) {
redirectAttributes = "Redirected to " +
PoolInfo.createStringFromPoolInfo(destination);
}
}