Skip to content

Commit

Permalink
Merge pull request CesiumGS#2 from oterral/c2c_c2c_patches_maxlevel
Browse files Browse the repository at this point in the history
Remove parenthesis
  • Loading branch information
fredj committed Oct 28, 2015
2 parents 30af3e8 + c5d239a commit f04e895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Scene/UrlTemplateImageryProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ define([
* Image or a Canvas DOM object.
*/
UrlTemplateImageryProvider.prototype.requestImage = function(x, y, level) {
if (level < this._minimumRetrievingLevel || level > this._maximumRetrievingLevel)) {
if (level < this._minimumRetrievingLevel || level > this._maximumRetrievingLevel) {
return UrlTemplateImageryProvider.transparentCanvas;
}
var url = buildImageUrl(this, x, y, level);
Expand Down

0 comments on commit f04e895

Please sign in to comment.