From de9b45ae19c0240ae795877c516fc66d2aa83910 Mon Sep 17 00:00:00 2001 From: Patrick Cozzi Date: Mon, 11 Apr 2016 13:54:40 -0400 Subject: [PATCH] Changes based on review --- Source/Scene/Cesium3DTile.js | 2 +- Specs/Scene/Cesium3DTilesetSpec.js | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/Scene/Cesium3DTile.js b/Source/Scene/Cesium3DTile.js index 759a0f5cc482..789fe51d36dc 100644 --- a/Source/Scene/Cesium3DTile.js +++ b/Source/Scene/Cesium3DTile.js @@ -237,7 +237,7 @@ define([ /** * The corresponding node in the cache replacement list. * - * @type {DoublyLinkedList} + * @type {DoublyLinkedListNode} * @readonly * * @private diff --git a/Specs/Scene/Cesium3DTilesetSpec.js b/Specs/Scene/Cesium3DTilesetSpec.js index 1453c24a1cc1..cdb74467b7f4 100644 --- a/Specs/Scene/Cesium3DTilesetSpec.js +++ b/Specs/Scene/Cesium3DTilesetSpec.js @@ -1292,15 +1292,14 @@ defineSuite([ expect(stats.numberReady).toEqual(5); // Root + four grandchildren (does not include empty children) // Zoom out so only root tile is needed to meet SSE. This unloads - // two of the four children so three tiles are still loaded (the - // root and two children) since the max number of loaded tiles is three. + // all grandchildren since the max number of loaded tiles is one. viewRootOnly(); scene.renderForSpecs(); expect(stats.numberOfCommands).toEqual(1); expect(stats.numberReady).toEqual(1); - // Zoom back in so the two children are re-requested. + // Zoom back in so the four children are re-requested. viewAllTiles(); return Cesium3DTilesTester.waitForPendingRequests(scene, tileset).then(function() {