Remove the unused NOT_QU_MASK constant

The code using this constant was removed by the commit
a7a0b78b41219b40d28d71232f79f8170f528f30
This commit is contained in:
vulcainman 2023-10-10 09:38:20 +02:00 committed by LittleChest
parent 8d78b4b53a
commit 2f0d514df0

View File

@ -13,7 +13,6 @@ const RESPONSE_FLAG = 1 << 15
const FLUSH_MASK = 1 << 15 const FLUSH_MASK = 1 << 15
const NOT_FLUSH_MASK = ~FLUSH_MASK const NOT_FLUSH_MASK = ~FLUSH_MASK
const QU_MASK = 1 << 15 const QU_MASK = 1 << 15
const NOT_QU_MASK = ~QU_MASK
const name = exports.name = {} const name = exports.name = {}