// Public Methods (5) public static void ClearTransaction(Guid transactionId, SPWeb contextWeb) { try { lock (Locker) { using (var dbConnectionManager = new DBConnectionManager(contextWeb)) { var transactionManager = new TransactionManager(dbConnectionManager); transactionManager.ClearTransaction(transactionId); } } } catch (Exception exception) { new Logger().Log(contextWeb, exception); } }