Fixes #421
This commit is contained in:
parent
47b7e858ff
commit
0af82fd31f
@ -28,7 +28,7 @@ ext {
|
||||
date = git.head().date.format("yy.MM.dd")
|
||||
revision = "-${git.head().abbreviatedId}"
|
||||
parents = git.head().parentIds;
|
||||
index = -69; // Offset to mach CI
|
||||
index = -70; // Offset to mach CI
|
||||
int major, minor, patch;
|
||||
major = minor = patch = 0;
|
||||
for (;parents != null && !parents.isEmpty();index++) {
|
||||
|
@ -216,7 +216,10 @@ public class BundledBlockData {
|
||||
int len = dir.values.size();
|
||||
int index = 0;
|
||||
for (Map.Entry<String, FaweStateValue> valuesEntry : dir.values.entrySet()) {
|
||||
valuesEntry.getValue().setDirection(dirs[index]);
|
||||
FaweStateValue state = valuesEntry.getValue();
|
||||
if (state != null) {
|
||||
state.setDirection(dirs[index]);
|
||||
}
|
||||
index++;
|
||||
}
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user