10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-11-04 13:13:55 +01: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 return -1
} }
else if (a.isTBE && b.isTBE) { else if (a.isTBE && b.isTBE) {
if (!a.isCorrectedTBE && b.isCorrectedTBE) { if (a.basis!=="CBS" && b.basis==="CBS") {
return -1 return -1
} }
else { else {

View File

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