Skip to content

Commit

Permalink
Update error-prone to 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo authored and findepi committed May 30, 2022
1 parent cf29082 commit 47dc6d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ public CloseableContext(DirContext context)
this.context = requireNonNull(context, "context is null");
}

@SuppressWarnings("BanJNDI")
public NamingEnumeration<SearchResult> search(String name, String filter, SearchControls searchControls)
throws NamingException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ final class LdapUtil
private LdapUtil()
{}

@SuppressWarnings("BanJNDI")
public static String addLdapDefinition(LdapObjectDefinition ldapObjectDefinition, DirContext context)
{
requireNonNull(ldapObjectDefinition, "LDAP Object Definition is null");
Expand All @@ -69,6 +70,7 @@ public static String addLdapDefinition(LdapObjectDefinition ldapObjectDefinition
return ldapObjectDefinition.getDistinguishedName();
}

@SuppressWarnings("BanJNDI")
public static void addAttributesToExistingLdapObjects(String distinguishedName, Map<String, List<String>> modifiedAttributes, DirContext context)
{
requireNonNull(distinguishedName, "distinguishedName is null");
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<dep.drift.version>1.14</dep.drift.version>
<dep.tempto.version>188</dep.tempto.version>
<dep.gcs.version>2.0.0</dep.gcs.version>
<dep.errorprone.version>2.12.0</dep.errorprone.version>
<dep.errorprone.version>2.14.0</dep.errorprone.version>
<dep.testcontainers.version>1.16.3</dep.testcontainers.version>
<dep.duct-tape.version>1.0.8</dep.duct-tape.version>
<dep.docker-java.version>3.2.12</dep.docker-java.version>
Expand Down

0 comments on commit 47dc6d8

Please sign in to comment.