Skip to content

Commit

Permalink
Remove deprecated function
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed Jan 11, 2025
1 parent d89457d commit 8d4c7bd
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/base/TilesRendererBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,6 @@ export class TilesRendererBase {

}

set preprocessURL( v ) {

console.warn( 'TilesRendererBase: The "preprocessURL" callback has been deprecated. Use a plugin, instead.' );
this._preprocessURL = v;

}

get preprocessURL() {

return this._preprocessURL;

}

constructor( url = null ) {

// state
Expand All @@ -122,8 +109,6 @@ export class TilesRendererBase {
this.plugins = [];
this.queuedTiles = [];

this._preprocessURL = null;

const lruCache = new LRUCache();
lruCache.unloadPriorityCallback = lruPriorityCallback;

Expand Down

0 comments on commit 8d4c7bd

Please sign in to comment.