Skip to content

Commit

Permalink
Merge pull request #151 from cryptimeleon/develop
Browse files Browse the repository at this point in the history
Bugfix release 3.0.3
  • Loading branch information
feidens authored Oct 28, 2021
2 parents 3968709 + fcf4b76 commit 7d6fcd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
group = 'org.cryptimeleon'
archivesBaseName = project.name
boolean isRelease = project.hasProperty("release")
version = '3.0.2' + (isRelease ? "" : "-SNAPSHOT")
version = '3.0.3' + (isRelease ? "" : "-SNAPSHOT")

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private static ByteAccumulator accumulateMap(ByteAccumulator accumulator, Map ob
if (key1.length > key2.length)
return 1;
//Arrays of same length are tie-broken by their first unequal byte
for (int j = 0; j < o1.length; j++) {
for (int j = 0; j < key1.length; j++) {
if (key1[j] < key2[j])
return -1;
if (key1[j] > key2[j])
Expand Down

0 comments on commit 7d6fcd9

Please sign in to comment.