Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
Signed-off-by: vmouradian <valentin.mouradian@artelys.com>
  • Loading branch information
vmouradian committed Apr 19, 2024
1 parent 24e7d55 commit ba6ec04
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,9 @@ public Stream<Area> getAreaStream() {
@Override
public Area getArea(String id) {
Area area = index.get(id, AreaImpl.class);
if (area == null) {
area = index.get(id, AicAreaImpl.class);
}
if (area == null) {
area = index.get(id, AicAreaImpl.class);
}
return area;
}

Expand Down

0 comments on commit ba6ec04

Please sign in to comment.