mirror of
https://gitlab.com/oeffi/oeffi.git
synced 2025-07-07 16:08:49 +00:00
StationsActivity: Remove redundant type arguments.
This commit is contained in:
parent
07fc3718a6
commit
d604c9928e
1 changed files with 2 additions and 2 deletions
|
@ -975,9 +975,9 @@ public class StationsActivity extends OeffiMainActivity implements StationsAware
|
|||
final List<LineDestination> lines1 = station1.getLines();
|
||||
final List<LineDestination> lines2 = station2.getLines();
|
||||
final List<LineDestination> lineDestinations1 = lines1 != null ? lines1
|
||||
: Collections.<LineDestination> emptyList();
|
||||
: Collections.emptyList();
|
||||
final List<LineDestination> lineDestinations2 = lines2 != null ? lines2
|
||||
: Collections.<LineDestination> emptyList();
|
||||
: Collections.emptyList();
|
||||
final int length1 = lineDestinations1.size();
|
||||
final int length2 = lineDestinations2.size();
|
||||
final int length = Math.max(length1, length2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue