We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86454fa + 2fe0997 commit 53a3484Copy full SHA for 53a3484
src/gov/nasa/worldwind/symbology/milstd2525/graphics/lines/PhaseLine.java
@@ -186,7 +186,11 @@ protected void createLabels()
186
@Override
187
protected void determineLabelPositions(DrawContext dc)
188
{
189
- Iterator<? extends Position> iterator = this.path.getPositions().iterator();
+ Iterable<? extends Position> positions = this.path.getPositions();
190
+ if (positions == null)
191
+ return;
192
+
193
+ Iterator<? extends Position> iterator = positions.iterator();
194
195
// Find the first and last positions on the path
196
Position first = iterator.next();
0 commit comments