Skip to content

Commit

Permalink
Update Closure Compiler to v20170423
Browse files Browse the repository at this point in the history
Change-Id: I28361a6c2d50087edc34695596731035a083543d
  • Loading branch information
joeyparrish committed May 16, 2017
1 parent 07e6575 commit 494d608
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions lib/util/fake_event_target.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,12 @@ shaka.util.FakeEventTarget.ListenerType;
* @param {string} type The event type to listen for.
* @param {shaka.util.FakeEventTarget.ListenerType} listener The callback or
* listener object to invoke.
* @param {boolean=} opt_capturing Ignored. FakeEventTargets do not have
* parents, so events neither capture nor bubble.
* @param {(EventListenerOptions|boolean)=} opt_options Ignored.
* @override
* @exportInterface
*/
shaka.util.FakeEventTarget.prototype.addEventListener =
function(type, listener, opt_capturing) {
function(type, listener, opt_options) {
this.listeners_.push(type, listener);
};

Expand All @@ -79,13 +78,12 @@ shaka.util.FakeEventTarget.prototype.addEventListener =
* @param {string} type The event type for which you wish to remove a listener.
* @param {shaka.util.FakeEventTarget.ListenerType} listener The callback or
* listener object to remove.
* @param {boolean=} opt_capturing Ignored. FakeEventTargets do not have
* parents, so events neither capture nor bubble.
* @param {(EventListenerOptions|boolean)=} opt_options Ignored.
* @override
* @exportInterface
*/
shaka.util.FakeEventTarget.prototype.removeEventListener =
function(type, listener, opt_capturing) {
function(type, listener, opt_options) {
this.listeners_.remove(type, listener);
};

Expand Down
2 changes: 1 addition & 1 deletion third_party/SUMMARY.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
closure/compiler.jar
The closure compiler, v20170218, by Google.
The closure compiler, v20170423, by Google.
Apache v2.0 license.
https://github.com/google/closure-compiler

Expand Down
Binary file modified third_party/closure/compiler.jar
Binary file not shown.

0 comments on commit 494d608

Please sign in to comment.