10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02:00

Remove isCorrectedTBE function

This commit is contained in:
Mickaël Véril 2020-03-30 16:36:42 +02:00
parent 5226082616
commit 53abf1f278
2 changed files with 1 additions and 4 deletions

View File

@ -363,7 +363,7 @@ draft: false
return -1
}
else if (a.isTBE && b.isTBE) {
if (!a.isCorrectedTBE && b.isCorrectedTBE) {
if (a.basis!=="CBS" && b.basis==="CBS") {
return -1
}
else {

View File

@ -97,9 +97,6 @@ class method {
get isTBE() {
return /^TBE/.test(this.name)
}
get isCorrectedTBE() {
return this.name="TBE"
}
}
class state {