summaryrefslogtreecommitdiff
path: root/java/common
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2006-12-19 16:09:39 +0000
committerMartin Ritchie <ritchiem@apache.org>2006-12-19 16:09:39 +0000
commitdaf5e34ea42702c102df5363284b2e3e5ef4e192 (patch)
tree1539dae59746ce957406d702e9e85d69fb97a9a6 /java/common
parent3085b02021e10aefd23de281f1ae71189a3c2ac8 (diff)
downloadqpid-python-daf5e34ea42702c102df5363284b2e3e5ef4e192.tar.gz
Maven output clean up.
Mainly removed exception stack traces from expected exceptions. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@488713 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common')
-rw-r--r--java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java b/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java
index 83cd204ca9..4b8f56e4e8 100644
--- a/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java
+++ b/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java
@@ -129,7 +129,7 @@ public class PropertyFieldTable implements FieldTable
}
catch (Exception e)
{
- _logger.warn("Unable to decode PropertyFieldTable format:" + textFormat, e);
+ _logger.warn("Unable to decode PropertyFieldTable format:" + textFormat);
throw new IllegalArgumentException("Unable to decode PropertyFieldTable format:" + textFormat);
}
}
@@ -607,7 +607,7 @@ public class PropertyFieldTable implements FieldTable
if (!(Character.isLetter(propertyName.charAt(0))
|| propertyName.charAt(0) == '$'
|| propertyName.charAt(0) == '#'
- || propertyName.charAt(0) == '_')) // Not official AMQP added for JMS.
+ || propertyName.charAt(0) == '_')) // Not official AMQP added for JMS.
{
throw new IllegalArgumentException("Identifier '" + propertyName + "' does not start with a valid AMQP start character");
}