mirror of https://github.com/apache/activemq.git
fix xbean qdox parser error with static initialiser, use block instead
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1026545 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6ddbba4850
commit
5477bc007f
|
@ -88,7 +88,10 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
|||
public static final String PROPERTY_LOG_SLOW_ACCESS_TIME = "org.apache.activemq.store.kahadb.LOG_SLOW_ACCESS_TIME";
|
||||
public static final int LOG_SLOW_ACCESS_TIME = Integer.parseInt(System.getProperty(PROPERTY_LOG_SLOW_ACCESS_TIME, "0"));
|
||||
|
||||
protected static final Buffer UNMATCHED = new Buffer(new byte[]{});
|
||||
protected static final Buffer UNMATCHED;
|
||||
static {
|
||||
UNMATCHED = new Buffer(new byte[]{});
|
||||
}
|
||||
private static final Log LOG = LogFactory.getLog(MessageDatabase.class);
|
||||
private static final int DEFAULT_DATABASE_LOCKED_WAIT_DELAY = 10 * 1000;
|
||||
|
||||
|
|
Loading…
Reference in New Issue