191192193194195196197198199200201
ServerTransaction stx = getTransaction(); try { if (stx != null) stx.doForget(); } catch (Exception ex) { } }
184185186187188189190191192193194
193194195196197198199200201202203
ServerTransaction stx = getTransaction(); try { if (stx != null) stx.doForget(); } catch (final Exception ex) { ex.printStackTrace(); }
188189190191192193194195196197198