< prev index next >

test/jdk/com/sun/jndi/ldap/InvalidLdapFilters.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -205,11 +205,11 @@
         // searching
         SearchControls scs = new SearchControls();
         scs.setSearchScope(SearchControls.SUBTREE_SCOPE);
 
         try {
-            NamingEnumeration answer =
+            NamingEnumeration<?> answer =
                     context.search("o=sun,c=us", searchFilter, scs);
         } catch (InvalidSearchFilterException isfe) {
             if (filterIsValid) {
                 // unexpected filter exception.
                 throw new Exception("Unexpected ISFE", isfe);
< prev index next >