comparison graal/com.oracle.max.criutils/src/com/oracle/max/criutils/BaseUnresolvedField.java @ 5531:816fb2492760

Remove architecture boolean from Ri* interfaces.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 08 Jun 2012 22:00:05 +0200
parents 426c605c9d3c
children a891c53a295b
comparison
equal deleted inserted replaced
5530:9da759562a42 5531:816fb2492760
46 46
47 public RiType type() { 47 public RiType type() {
48 return type; 48 return type;
49 } 49 }
50 50
51 public RiKind kind(boolean architecture) { 51 public RiKind kind() {
52 return type.kind(architecture); 52 return type.kind();
53 } 53 }
54 54
55 public RiType holder() { 55 public RiType holder() {
56 return holder; 56 return holder;
57 } 57 }