summaryrefslogtreecommitdiff
path: root/qpid/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
commit914c431e3ab17c7c5ddbae1e9a9ec528da8259b3 (patch)
treea2f2234a4aa5c4d39362a6ba9160563c290de48c /qpid/java/common
parent31ebe383026bc208da66614a8537f52d8f3ed87c (diff)
downloadqpid-python-914c431e3ab17c7c5ddbae1e9a9ec528da8259b3.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@488713 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common')
-rw-r--r--qpid/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java b/qpid/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java
index 83cd204ca9..4b8f56e4e8 100644
--- a/qpid/java/common/src/main/java/org/apache/qpid/framing/PropertyFieldTable.java
+++ b/qpid/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");
}