Java: remove deprecations that were recently updated from an automated patch of mine

This commit is contained in:
Erik Krogh Kristensen
2022-03-07 10:47:15 +01:00
parent 6dd3f7f113
commit f924d69dbd

View File

@@ -107,12 +107,6 @@ class IfStmt extends ConditionalStmt, @ifstmt {
/** Gets the `then` branch of this `if` statement. */
Stmt getThen() { result.isNthChildOf(this, 1) }
/**
* Gets the statement that is executed whenever the condition
* of this branch statement evaluates to `true`.
*/
deprecated override Stmt getTrueSuccessor() { result = this.getThen() }
/** Gets the `else` branch of this `if` statement. */
Stmt getElse() { result.isNthChildOf(this, 2) }
@@ -160,12 +154,6 @@ class ForStmt extends ConditionalStmt, @forstmt {
/** Gets the body of this `for` loop. */
Stmt getStmt() { result.getParent() = this and result.getIndex() = 2 }
/**
* Gets the statement that is executed whenever the condition
* of this branch statement evaluates to true.
*/
deprecated override Stmt getTrueSuccessor() { result = this.getStmt() }
/**
* Gets a variable that is used as an iteration variable: it is defined,
* updated or tested in the head of the `for` statement.
@@ -224,12 +212,6 @@ class WhileStmt extends ConditionalStmt, @whilestmt {
/** Gets the body of this `while` loop. */
Stmt getStmt() { result.getParent() = this }
/**
* Gets the statement that is executed whenever the condition
* of this branch statement evaluates to true.
*/
deprecated override Stmt getTrueSuccessor() { result = this.getStmt() }
override string pp() { result = "while (...) " + this.getStmt().pp() }
override string toString() { result = "while (...)" }
@@ -247,12 +229,6 @@ class DoStmt extends ConditionalStmt, @dostmt {
/** Gets the body of this `do` loop. */
Stmt getStmt() { result.getParent() = this }
/**
* Gets the statement that is executed whenever the condition
* of this branch statement evaluates to `true`.
*/
deprecated override Stmt getTrueSuccessor() { result = this.getStmt() }
override string pp() { result = "do " + this.getStmt().pp() + " while (...)" }
override string toString() { result = "do ... while (...)" }