ProjectQoSFilter: Remove unnecessarily nested else-block

Change-Id: Icabeaa9cedf50a84da62ab67d24355928fae8fbb
This commit is contained in:
David Pursehouse
2017-02-08 16:30:51 +09:00
parent 5b15aedeb2
commit c8acb9ae0d

View File

@@ -239,9 +239,9 @@ public class ProjectQoSFilter implements Filter {
String path = m.group(1);
String cmd = m.group(2);
return cmd + " " + path + userName;
} else {
return req.getMethod() + " " + uri + userName;
}
return req.getMethod() + " " + uri + userName;
}
}
}