Remove unnecessary newlines

This commit is contained in:
Frederic Junod
2016-02-04 12:24:20 +01:00
parent 473cbba26e
commit c43de104ce
6 changed files with 6 additions and 12 deletions
+1 -2
View File
@@ -266,8 +266,7 @@ ol.events.listen = function(target, type, listener, opt_this, opt_once) {
* listener. Default is the `target`.
* @return {ol.events.Key} Key for unlistenByKey.
*/
ol.events.listenOnce = function(
target, type, listener, opt_this) {
ol.events.listenOnce = function(target, type, listener, opt_this) {
return ol.events.listen(target, type, listener, opt_this, true);
};