From f134ef63e016bf13b70bef1ec277603b8a9a6f21 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 25 Apr 2012 11:06:50 +0000
Subject: [PATCH] Fix OPENDJ-474: Remove requirement for clients to deal with InterruptedExceptions in synchronous APIs
---
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/LDAPConnectionFactory.java | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/LDAPConnectionFactory.java b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/LDAPConnectionFactory.java
index 5660398..0e7655d 100644
--- a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/LDAPConnectionFactory.java
+++ b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/LDAPConnectionFactory.java
@@ -40,8 +40,7 @@
*/
public final class LDAPConnectionFactory implements ConnectionFactory {
// We implement the factory using the pimpl idiom in order to avoid making
- // too
- // many implementation classes public.
+ // too many implementation classes public.
private final LDAPConnectionFactoryImpl impl;
@@ -139,7 +138,7 @@
* {@inheritDoc}
*/
@Override
- public Connection getConnection() throws ErrorResultException, InterruptedException {
+ public Connection getConnection() throws ErrorResultException {
return impl.getConnection();
}
--
Gitblit v1.10.0