Skip to content

Commit

Permalink
Merge pull request #590 from moving-bits/minor_spelling_fixes
Browse files Browse the repository at this point in the history
Fix minor spelling issues

Thank you for your contribution.
  • Loading branch information
afischerdev committed Jul 17, 2023
2 parents 22cf0bb + 0d89754 commit 1109021
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ else if (!ctx.skipConstantExpressionOptimizations) {
} 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..
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static String checkFileIntegrity(File f) throws IOException {
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())
Expand Down

0 comments on commit 1109021

Please sign in to comment.