aboutsummaryrefslogtreecommitdiff
path: root/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java
diff options
context:
space:
mode:
authorFlorian Reimair <florian.reimair@iaik.tugraz.at>2015-08-11 11:54:15 +0200
committerFlorian Reimair <florian.reimair@iaik.tugraz.at>2015-08-11 11:54:15 +0200
commit7696a5956a8d28a0015ef028ac0225fbaddf6c4d (patch)
tree027e22dce6adb1c341b527a0ac446e46dbb57cc3 /id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java
parenta7c29dbe4c1103457d717a90a138fd605d562ac9 (diff)
downloadmoa-id-spss-7696a5956a8d28a0015ef028ac0225fbaddf6c4d.tar.gz
moa-id-spss-7696a5956a8d28a0015ef028ac0225fbaddf6c4d.tar.bz2
moa-id-spss-7696a5956a8d28a0015ef028ac0225fbaddf6c4d.zip
approved some more java changes
Diffstat (limited to 'id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java')
-rw-r--r--id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java15
1 files changed, 1 insertions, 14 deletions
diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java
index 566817747..33ae4c743 100644
--- a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java
+++ b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryRequest.java
@@ -2,18 +2,11 @@ package eu.stork.peps.auth.commons;
import java.io.Serializable;
-import org.apache.log4j.Logger;
-
public class STORKAttrQueryRequest implements Serializable, Cloneable {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 4778480781609392750L;
- /**
- * Logger object.
- */
- private static final Logger LOG = Logger.getLogger(STORKAttrQueryRequest.class.getName());
-
/** The samlId. */
private String samlId;
@@ -290,13 +283,7 @@ public class STORKAttrQueryRequest implements Serializable, Cloneable {
* @see IPersonalAttributeList
*/
public IPersonalAttributeList getPersonalAttributeList() {
- IPersonalAttributeList personnalAttributeList = null;
- try {
- personnalAttributeList = (IPersonalAttributeList) attributeList.clone();
- } catch (CloneNotSupportedException e1) {
- LOG.trace("[PersonalAttribute] Nothing to do.");
- }
- return personnalAttributeList;
+ return (IPersonalAttributeList) attributeList.clone();
}
/**