Codebase list jd-gui / cac01fb
Fix Java generics cast emmanue1 5 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
259259
260260 String u = uri.toString();
261261 T child = null;
262 Enumeration<T> enumeration = node.children();
262 Enumeration enumeration = node.children();
263263
264264 while (enumeration.hasMoreElements()) {
265 T element = enumeration.nextElement();
265 T element = (T)enumeration.nextElement();
266266 String childU = element.getUri().toString();
267267
268268 if (u.length() > childU.length()) {