Guest User

Untitled

a guest
Jan 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <javac deprecation="true"
  2. includeantruntime="false"
  3. debug="true"
  4. debuglevel="${debuglevel}"
  5. destdir="${project.build.outputpath}"
  6. verbose="true"
  7. encoding="UTF-8">
  8. <src path="${project.src.classes}" />
  9. <compilerarg value="-Xlint" />
  10. <classpath refid="core.classpath" />
  11. </javac>
  12.  
  13. <path id="core.classpath">
  14. <pathelement location="${project.build.outputpath}" />
  15. <pathelement location="${test.dir}" />
  16. <fileset dir="${project.build.libpath}">
  17. <include name="**/*.jar"/>
  18. </fileset>
  19. </path>
  20.  
  21. XXX.java:248: warning: [rawtypes] found raw type: Class
  22. [javac] private static void logNotFoundInMemory(Class entityClass, Integer id)
  23. [javac] ^
  24. [javac] missing type arguments for generic class Class<T>
  25. [javac] where T is a type-variable:
  26. [javac] T extends Object declared in class Class
  27.  
  28.  
  29. StatReporterJob.java:219: warning: [unchecked] unchecked cast
  30. [javac] T stat = (T) snapshotRow[REFERENCE];
  31. [javac] ^
  32. [javac] required: T
  33. [javac] found: Object
Add Comment
Please, Sign In to add comment