@@ -153,7 +153,7 @@ public static void doSave(AttributeSet attrs, User user, ExpData data, @Nullable
153153 List <List <?>> paramsList = new ArrayList <>();
154154 for (Map .Entry <String , String > entry : keywords .entrySet ())
155155 {
156- AttributeCache .Entry a = AttributeCache .KEYWORDS .byAttribute (c , entry .getKey ());
156+ AttributeCache .Entry <?, ?> a = AttributeCache .KEYWORDS .byAttribute (c , entry .getKey ());
157157 assert a != null : "parepareForSave should have created an entry" ;
158158 int preferredId = a .getAliasedId () == null ? a .getRowId () : a .getAliasedId ();
159159 int originalId = a .getRowId ();
@@ -174,7 +174,7 @@ public static void doSave(AttributeSet attrs, User user, ExpData data, @Nullable
174174 List <List <?>> paramsList = new ArrayList <>();
175175 for (Map .Entry <StatisticSpec , Double > entry : statistics .entrySet ())
176176 {
177- AttributeCache .Entry a = AttributeCache .STATS .byAttribute (c , entry .getKey ());
177+ AttributeCache .Entry <?, ?> a = AttributeCache .STATS .byAttribute (c , entry .getKey ());
178178 assert a != null : "parepareForSave should have created an entry" ;
179179 int preferredId = a .getAliasedId () == null ? a .getRowId () : a .getAliasedId ();
180180 int originalId = a .getRowId ();
@@ -213,7 +213,7 @@ public static void doSave(AttributeSet attrs, User user, ExpData data, @Nullable
213213 List <List <?>> paramsList = new ArrayList <>();
214214 for (Map .Entry <GraphSpec , byte []> entry : graphs .entrySet ())
215215 {
216- AttributeCache .Entry a = AttributeCache .GRAPHS .byAttribute (c , entry .getKey ());
216+ AttributeCache .Entry <?, ?> a = AttributeCache .GRAPHS .byAttribute (c , entry .getKey ());
217217 assert a != null : "parepareForSave should have created an entry" ;
218218 int preferredId = a .getAliasedId () == null ? a .getRowId () : a .getAliasedId ();
219219 int originalId = a .getRowId ();
0 commit comments