You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get rid of unnecessary []'s in function type annotations.
Annotations such as
@type {function(...[Foo])}
are rewritten as
@type {function(...Foo)}
The []'s are no longer necessary as of the r20141103
closure compiler release and doesn't compile as of
v20150609 (or some less recent version).
0 commit comments