Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noberasco committed Jun 3, 2019
1 parent 368b527 commit 8ec4407
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/locationtech/proj4j/Registry.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ public List<Projection> getProjections() {
for (String name : projRegistry.keySet()) {
Projection projection = getProjection(name);

projections.add(projection);
if (projection != null) {
projections.add(projection);
}
}

return projections;
Expand Down

0 comments on commit 8ec4407

Please sign in to comment.