Community
Participate
Working Groups
Julien HENRY wrote: In GetRemoteFolderChildrenOperation.java line 88, may I suggest to replace: List<IRepositoryResource> newTmp = Arrays.asList(tmp); by List<IRepositoryResource> newTmp = new ArrayList<IRepositoryResource>(tmp.length); newTmp.addAll(Arrays.asList(tmp)); Indeed Arrays.asList(tmp) seems to be immutable
Fixed.