(fields: Iterator<string>)
| 172 | } |
| 173 | |
| 174 | decodeFAParams(fields: Iterator<string>): void { |
| 175 | this.order.faGroup = decodeStr(fields) |
| 176 | this.order.faMethod = decodeStr(fields) |
| 177 | this.order.faPercentage = decodeStr(fields) |
| 178 | if (this.serverVersion < MIN_SERVER_VER_FA_PROFILE_DESUPPORT) { |
| 179 | decodeStr(fields) // skip deprecated faProfile field |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | decodeModelCode(fields: Iterator<string>): void { |
| 184 | if (this.serverVersion >= MIN_SERVER_VER_MODELS_SUPPORT) { |
no test coverage detected