(int propType)
| 467 | } |
| 468 | |
| 469 | private PropListItem lookupProperty(int propType) { |
| 470 | PropListItem x = propListHead; |
| 471 | while (x != null && propType != x.type) { |
| 472 | x = x.next; |
| 473 | } |
| 474 | return x; |
| 475 | } |
| 476 | |
| 477 | private PropListItem ensureProperty(int propType) { |
| 478 | PropListItem item = lookupProperty(propType); |
no outgoing calls
no test coverage detected