Skip to content

Commit

Permalink
Remove unnecessary "? super String" generic spec
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Aug 19, 2023
1 parent dfed3f8 commit c0c2c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/libj/jci/InMemoryCompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @see InMemoryClassLoader
*/
public class InMemoryCompiler {
private static ClassLoader digestOptions(final ClassLoader classLoader, final List<? super String> options, final List<? extends File> classpath) {
private static ClassLoader digestOptions(final ClassLoader classLoader, final List<String> options, final List<? extends File> classpath) {
if (classpath == null)
return classLoader;

Expand Down

0 comments on commit c0c2c92

Please sign in to comment.