We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d5269c + 922abd0 commit 19213cbCopy full SHA for 19213cb
aat-lib/src/main/java/ch/bailu/aat_lib/gpx/GpxListIterator.kt
@@ -6,11 +6,15 @@ import ch.bailu.aat_lib.gpx.segmented_list.SegmentNode
6
7
class GpxListIterator(private val track: GpxList) {
8
private inner class PointPrimerNode : GpxPointFirstNode(GpxPoint.NULL, GpxAttributesNull.NULL) {
9
- override var next = track.pointList.first
+ override var next: Node?
10
+ get() = track.pointList.first
11
+ set(_) {}
12
}
13
14
private inner class SegmentPrimerNode : GpxSegmentNode(PointPrimerNode()) {
- override var next = track.segmentList.first
15
16
+ get() = track.segmentList.first
17
18
19
20
private var point: GpxPointNode = PointPrimerNode()
0 commit comments