diff options
author | Martin Ritchie <ritchiem@apache.org> | 2006-12-19 16:09:39 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2006-12-19 16:09:39 +0000 |
commit | daf5e34ea42702c102df5363284b2e3e5ef4e192 (patch) | |
tree | 1539dae59746ce957406d702e9e85d69fb97a9a6 /java/common | |
parent | 3085b02021e10aefd23de281f1ae71189a3c2ac8 (diff) | |
download | qpid-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.java | 4 |
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"); } |