Merge pull request #590 from moving-bits/minor_spelling_fixes

Fix minor spelling issues

Thank you for your contribution.
This commit is contained in:
afischerdev 2023-07-17 16:31:32 +02:00 committed by GitHub
commit 1109021018
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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..
}
}
}

View file

@ -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())