Fix minor spelling issues
This commit is contained in:
parent
2762744a84
commit
0d89754ecf
2 changed files with 3 additions and 3 deletions
|
@ -66,11 +66,11 @@ final class BExpression {
|
||||||
} else {
|
} else {
|
||||||
BExpression eCollapsed = e.tryCollapse();
|
BExpression eCollapsed = e.tryCollapse();
|
||||||
if (e != eCollapsed) {
|
if (e != eCollapsed) {
|
||||||
e = eCollapsed; // allow breakspoint..
|
e = eCollapsed; // allow breakpoint..
|
||||||
}
|
}
|
||||||
BExpression eEvaluated = e.tryEvaluateConstant();
|
BExpression eEvaluated = e.tryEvaluateConstant();
|
||||||
if (e != eEvaluated) {
|
if (e != eEvaluated) {
|
||||||
e = eEvaluated; // allow breakspoint..
|
e = eEvaluated; // allow breakpoint..
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,7 @@ final public class PhysicalFile {
|
||||||
DataBuffers dataBuffers = new DataBuffers();
|
DataBuffers dataBuffers = new DataBuffers();
|
||||||
pf = new PhysicalFile(f, dataBuffers, -1, -1);
|
pf = new PhysicalFile(f, dataBuffers, -1, -1);
|
||||||
int div = pf.divisor;
|
int div = pf.divisor;
|
||||||
for (int lonDegree = 0; lonDegree < 5; lonDegree++) { // does'nt really matter..
|
for (int lonDegree = 0; lonDegree < 5; lonDegree++) { // doesn't really matter..
|
||||||
for (int latDegree = 0; latDegree < 5; latDegree++) { // ..where on earth we are
|
for (int latDegree = 0; latDegree < 5; latDegree++) { // ..where on earth we are
|
||||||
OsmFile osmf = new OsmFile(pf, lonDegree, latDegree, dataBuffers);
|
OsmFile osmf = new OsmFile(pf, lonDegree, latDegree, dataBuffers);
|
||||||
if (osmf.hasData())
|
if (osmf.hasData())
|
||||||
|
|
Loading…
Reference in a new issue