blob: faf76378527d592a87da059106bcf783cdb460a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package vaporize.library;
import misc.*;
class TransientInterval {
protected int first_def;
protected int last_use;
protected TransientInterval(int first_def, int last_use) {
this.first_def = first_def;
this.last_use = last_use;
}
@Override public boolean equals(Object other) {
TransientInterval o;
return (other instanceof TransientInterval) &&
(((o = (TransientInterval) other)).first_def == this.first_def);
}
}
|