removeTransactionHeader static method
Removes transaction header from a frame
Implementation
static StompFrame removeTransactionHeader(StompFrame frame) {
final newFrame = frame.copy();
newFrame.removeHeader(StompHeaders.transaction);
return newFrame;
}