Rename _ol_events_EventType_ to EventType

This commit is contained in:
Marc Jansen
2017-12-15 09:48:46 +01:00
committed by Frederic Junod
parent ec64789940
commit 479c7a4668
46 changed files with 134 additions and 134 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
import {inherits} from '../index.js';
import _ol_asserts_ from '../asserts.js';
import _ol_events_EventTarget_ from '../events/EventTarget.js';
import _ol_events_EventType_ from '../events/EventType.js';
import EventType from '../events/EventType.js';
/**
* Implements a Least-Recently-Used cache where the keys do not conflict with
@@ -71,7 +71,7 @@ _ol_structs_LRUCache_.prototype.clear = function() {
this.entries_ = {};
this.oldest_ = null;
this.newest_ = null;
this.dispatchEvent(_ol_events_EventType_.CLEAR);
this.dispatchEvent(EventType.CLEAR);
};