https://issues.apache.org/jira/browse/AMQ-3180 - ensure correct type us used in error case

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1070443 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-02-14 11:15:42 +00:00
parent 9edeb21bec
commit a1d3245182
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ public final class OpenTypeSupport {
rc.put(BODY_PREVIEW, data);
} catch (JMSException e) {
rc.put(BODY_PREVIEW, new byte[] {});
rc.put(BODY_PREVIEW, new Byte[] {});
}
return rc;
}