Merge pull request #359 from DevFactory/release/Local-Variables-should-not-be-declared-and-then-immediately-returned-or-thrown-fix-1

squid:S1488 - Local Variables should not be declared and then immedia…
This commit is contained in:
Ilkka Seppälä
2016-01-30 14:42:05 +02:00
4 changed files with 5 additions and 11 deletions

View File

@ -66,7 +66,6 @@ public class Customer {
@Override
public int hashCode() {
int result = getId();
return result;
return getId();
}
}