Changeset 14137
- Timestamp:
- 08/26/12 19:23:15 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/StandardObject.java
r14136 r14137 429 429 { 430 430 final StandardObject instance = checkStandardObject(first); 431 if (instance.layout.isInvalid()) { 432 // Update instance. 433 instance.updateLayout(); 434 } 431 435 final int index; 432 436 if (second instanceof Fixnum) { … … 474 478 { 475 479 final StandardObject instance = checkStandardObject(first); 480 if (instance.layout.isInvalid()) { 481 // Update instance. 482 instance.updateLayout(); 483 } 476 484 final int index; 477 485 if (second instanceof Fixnum) {
Note: See TracChangeset
for help on using the changeset viewer.