Skip to content

Commit

Permalink
Make type more specific
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=141610442
  • Loading branch information
tbreisacher authored and blickly committed Dec 10, 2016
1 parent eda1950 commit 48777e4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/com/google/javascript/jscomp/DisambiguateProperties.java
Expand Up @@ -116,10 +116,9 @@ static class Warnings {


/** /**
* Map of a type to all the related errors that invalidated the type * Map of a type to all the related errors that invalidated the type
* for disambiguation. It has to be Object because of the generic nature of * for disambiguation.
* this pass.
*/ */
private final Multimap<Object, JSError> invalidationMap; private final Multimap<JSType, JSError> invalidationMap;


/** /**
* In practice any large code base will have thousands and thousands of * In practice any large code base will have thousands and thousands of
Expand Down

0 comments on commit 48777e4

Please sign in to comment.