From c5bf6f1c6f06e4092670690465bb6757317eb564 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 25 Feb 2018 08:30:03 -0700 Subject: [PATCH] Remove static members from BingMaps --- src/ol/source/BingMaps.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ol/source/BingMaps.js b/src/ol/source/BingMaps.js index 3b0e8d3e06..5bb46b29e0 100644 --- a/src/ol/source/BingMaps.js +++ b/src/ol/source/BingMaps.js @@ -83,9 +83,8 @@ inherits(BingMaps, TileImage); * Terms Of Use. * @const * @type {string} - * @api */ -BingMaps.TOS_ATTRIBUTION = '' + 'Terms of Use'; @@ -197,7 +196,7 @@ BingMaps.prototype.handleImageryMetadataResponse = function(response) { } }); - attributions.push(BingMaps.TOS_ATTRIBUTION); + attributions.push(TOS_ATTRIBUTION); return attributions; }); }