OSDN Git Service

Remove an invalid assertion.
authorCarl Shapiro <cshapiro@google.com>
Tue, 10 May 2011 07:50:35 +0000 (00:50 -0700)
committerCarl Shapiro <cshapiro@google.com>
Tue, 10 May 2011 07:50:35 +0000 (00:50 -0700)
commit4e738a719ef872cce9a99f539dd18394f94790fe
tree52f0d8a590f461091c9e7ed77f1b44b1c2ddbb5b
parent65596b606c6fd15a27e43f0061789e6badfea473
Remove an invalid assertion.

There are three situtations where insertions are performed into one of
the intern tables.  Two cases perform an insertion when an key value
pair is known to be absent.  One case performs an insert when a key
value pair might be present.  An assertion was added that errantly
checked that an insertion occured in the might be present case.  This
change leaves an assert in place for the absent cases and removes the
assert in the might be present case.

In addition, a comment has been improved to reinforce the condition of
the might be present insertion.

Change-Id: I84a9090a9ca338e164898e1d6893b2a23d74f5bc
vm/Intern.cpp