Merge pull request #590 from moving-bits/minor_spelling_fixes
Fix minor spelling issues Thank you for your contribution.
This commit is contained in:
commit
1109021018
2 changed files with 3 additions and 3 deletions
|
@ -66,11 +66,11 @@ final class BExpression {
|
|||
} else {
|
||||
BExpression eCollapsed = e.tryCollapse();
|
||||
if (e != eCollapsed) {
|
||||
e = eCollapsed; // allow breakspoint..
|
||||
e = eCollapsed; // allow breakpoint..
|
||||
}
|
||||
BExpression eEvaluated = e.tryEvaluateConstant();
|
||||
if (e != eEvaluated) {
|
||||
e = eEvaluated; // allow breakspoint..
|
||||
e = eEvaluated; // allow breakpoint..
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ final public class PhysicalFile {
|
|||
DataBuffers dataBuffers = new DataBuffers();
|
||||
pf = new PhysicalFile(f, dataBuffers, -1, -1);
|
||||
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
|
||||
OsmFile osmf = new OsmFile(pf, lonDegree, latDegree, dataBuffers);
|
||||
if (osmf.hasData())
|
||||
|
|
Loading…
Reference in a new issue