(String oldExpr, String newExpr)
| 6 | private String newExpr; |
| 7 | |
| 8 | public Change(String oldExpr, String newExpr) { |
| 9 | this.oldExpr = oldExpr; |
| 10 | this.newExpr = newExpr; |
| 11 | } |
| 12 | |
| 13 | public String getOldExpr() { |
| 14 | return oldExpr; |
nothing calls this directly
no outgoing calls
no test coverage detected