Browse Source

Revert "Fix case where an empty tile is attempted to be loaded"

Garrett Johnson 5 năm trước cách đây
mục cha
commit
894e18d7dc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/base/traverseFunctions.js

+ 1 - 1
src/base/traverseFunctions.js

@@ -246,7 +246,7 @@ export function skipTraversal( tile, renderer ) {
 			tile.__active = true;
 			stats.active ++;
 
-		} else if ( ! lruCache.isFull() && ! tile.__contentEmpty ) {
+		} else if ( ! lruCache.isFull() ) {
 
 			renderer.requestTileContents( tile );