From 0e52d359d661d2fd95fa5c28058353f5d121173c Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Thu, 20 Sep 2012 22:32:04 +0000
Subject: [PATCH] Fix OPENDJ-597: Remove superfluous ByteString based constructors
---
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java
index 0112e4c..566bc19 100644
--- a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java
+++ b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java
@@ -80,7 +80,7 @@
*/
@Override
public boolean containsAttribute(final Attribute attribute,
- final Collection<ByteString> missingValues) {
+ final Collection<? super ByteString> missingValues) {
final Attribute a = getAttribute(attribute.getAttributeDescription());
if (a == null) {
if (missingValues != null) {
@@ -212,7 +212,7 @@
*/
@Override
public boolean removeAttribute(final Attribute attribute,
- final Collection<ByteString> missingValues) {
+ final Collection<? super ByteString> missingValues) {
final Iterator<Attribute> i = getAllAttributes().iterator();
final AttributeDescription attributeDescription = attribute.getAttributeDescription();
while (i.hasNext()) {
--
Gitblit v1.10.0