Skip to content

Commit a6775e1

Browse files
Merge branch 'master' into static_rocksdb_mac
2 parents dced53d + 4aa9ae1 commit a6775e1

File tree

3 files changed

+6
-27
lines changed

3 files changed

+6
-27
lines changed

exonum-java-binding/core/src/test/java/com/exonum/binding/core/storage/indices/BaseListIndexProxyGroupTestable.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ void listsInGroupMustBeIndependent() {
4242

4343
// Create a list proxy for each id
4444
Map<String, ListIndex<String>> listsById = new HashMap<>();
45-
for (String setId : elementsById.keys()) {
46-
byte[] id = bytes(setId);
47-
ListIndex<String> set = createInGroup(id, view);
45+
for (String listId : elementsById.keys()) {
46+
byte[] id = bytes(listId);
47+
ListIndex<String> list = createInGroup(id, view);
4848

49-
listsById.put(setId, set);
49+
listsById.put(listId, list);
5050
}
5151

5252
// Add elements to each list in the group

exonum-java-binding/pom.xml

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
<junit.version>4.12</junit.version>
116116
<junit.jupiter.version>5.5.0</junit.jupiter.version>
117117
<powermock.version>2.0.2</powermock.version>
118-
<protobuf.version>3.8.0</protobuf.version>
118+
<protobuf.version>3.9.0</protobuf.version>
119119
<mockito-core.version>3.0.0</mockito-core.version>
120120
<guava.version>28.0-jre</guava.version>
121121
<vertx.version>3.7.1</vertx.version>
@@ -421,29 +421,7 @@
421421
<configuration>
422422
<source>${java.compiler.source}</source>
423423
<doclint>none</doclint>
424-
<!-- Allow fetching links below -->
425-
<isOffline>false</isOffline>
426424
<detectOfflineLinks>false</detectOfflineLinks>
427-
<links>
428-
<!-- Published Exonum API docs. Only the modules that are dependencies of
429-
other modules are listed here.
430-
431-
To generate release Javadocs, a two-step process is required:
432-
0. Bump version.
433-
1. Generate Javadocs for the given version. They won't have cross-references,
434-
because no Javadocs have been published on the website.
435-
2. Upload them to the website.
436-
3. Re-generate Javadocs. This time the Javadocs will be available
437-
on the website, and cross-references will be added.
438-
4. Upload the new ones.
439-
440-
Our web-site seems to be the only one compatible with javadoc tool —
441-
the Javadocs published on javadoc.io, github.io (guava and vertx)
442-
do not work.
443-
-->
444-
<link>https://exonum.com/doc/api/java-binding-common/${project.version}</link>
445-
<link>https://exonum.com/doc/api/java-binding-core/${project.version}</link>
446-
</links>
447425
<additionalJOption>${maven.javadoc.joption}</additionalJOption>
448426
</configuration>
449427
<executions>

exonum-light-client/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@
256256
<!-- Allow fetching external resources to generate links -->
257257
<isOffline>false</isOffline>
258258
<links>
259+
<!-- todo: Update when upgraded to 0.7 to new link: https://exonum.com/doc/api/java-binding/${ejb.version} -->
259260
<link>https://exonum.com/doc/api/java-binding-common/${ejb.version}</link>
260261
</links>
261262
</configuration>

0 commit comments

Comments
 (0)