Guest User

Untitled

a guest
Nov 13th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. LinkedList<String> modelValue = new LinkedList<>();
  2. componentValue.forEach(product -> {
  3. Product p = (Product) product;
  4. modelValue.add(p.getObjectId());
  5. });
  6.  
  7. Method 'Iterable.forEach(Consumer<? super T>)' is not present in JRE Emulation Library so it cannot be used in client code of 'com.mycompany.app.AppTest' GWT module less... (Ctrl+F1)
  8. This inspection reports usages in client code of JDK classes which are not present in the JRE Emulation Library.
Add Comment
Please, Sign In to add comment