File tree 4 files changed +10
-10
lines changed
locus-api-core/src/main/java/locus/api/objects/extra
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 0.9.53 ]
7
+ ## [ 0.9.54 ]
8
8
### Added
9
9
- ` GeocachingData.CACHE_SIZE_VIRTUAL ` new size value
10
10
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device
16
16
17
17
## Current version
18
18
19
- Latest stable LT version: ** 0.9.53 **
19
+ Latest stable LT version: ** 0.9.54 **
20
20
Available versions on the maven repository: [ here] ( https://repo1.maven.org/maven2/com/asamm/ ) .
21
21
22
22
How to ** update to new 0.9.x** version? More about it [ here] ( https://github.com/asamm/locus-api/wiki/Update-to-version-0.9.0 ) .
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
23
23
LOCUS_LOGGER = 2.2
24
24
25
25
# Version
26
- API_CODE = 100
27
- API_VERSION = 0.9.53
26
+ API_CODE = 101
27
+ API_VERSION = 0.9.54
28
28
29
29
# ANDROID SUPPORT LIBS
30
30
# https://developer.android.com/topic/libraries/support-library/revisions.html
Original file line number Diff line number Diff line change @@ -183,23 +183,23 @@ class Location() : Storable() {
183
183
loc.extraDataShort
184
184
?.takeIf { ! it.isEmpty }
185
185
?.let {
186
- for (i in 0 .. it.size()) {
186
+ for (i in 0 until it.size()) {
187
187
setDataShort(it.keyAt(i), it.valueAt(i))
188
188
}
189
189
}
190
190
extraDataInt?.clear()
191
191
loc.extraDataInt
192
192
?.takeIf { ! it.isEmpty }
193
193
?.let {
194
- for (i in 0 .. it.size()) {
194
+ for (i in 0 until it.size()) {
195
195
setDataInt(it.keyAt(i), it.valueAt(i))
196
196
}
197
197
}
198
198
extraDataLong?.clear()
199
199
loc.extraDataLong
200
200
?.takeIf { ! it.isEmpty }
201
201
?.let {
202
- for (i in 0 .. it.size()) {
202
+ for (i in 0 until it.size()) {
203
203
setDataLong(it.keyAt(i), it.valueAt(i))
204
204
}
205
205
}
@@ -208,23 +208,23 @@ class Location() : Storable() {
208
208
loc.extraDataFloat
209
209
?.takeIf { ! it.isEmpty }
210
210
?.let {
211
- for (i in 0 .. it.size()) {
211
+ for (i in 0 until it.size()) {
212
212
setDataFloat(it.keyAt(i), it.valueAt(i))
213
213
}
214
214
}
215
215
extraDataDouble?.clear()
216
216
loc.extraDataDouble
217
217
?.takeIf { ! it.isEmpty }
218
218
?.let {
219
- for (i in 0 .. it.size()) {
219
+ for (i in 0 until it.size()) {
220
220
setDataDouble(it.keyAt(i), it.valueAt(i))
221
221
}
222
222
}
223
223
extraDataString?.clear()
224
224
loc.extraDataString
225
225
?.takeIf { ! it.isEmpty }
226
226
?.let {
227
- for (i in 0 .. it.size()) {
227
+ for (i in 0 until it.size()) {
228
228
setDataString(it.keyAt(i), it.valueAt(i))
229
229
}
230
230
}
You can’t perform that action at this time.
0 commit comments