Skip to content

Commit 435f46c

Browse files
Tidy up comments
1 parent 7bebe3a commit 435f46c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

jbmc/src/java_bytecode/java_bytecode_parser.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,7 @@ void java_bytecode_parsert::rconstant_pool()
680680
case CONSTANT_Long:
681681
case CONSTANT_Double:
682682
it->number = read<u8>();
683-
// Eight-byte constants take up two entries
684-
// in the constant_pool table, for annoying this programmer.
683+
// Eight-byte constants take up two entries in the constant_pool table.
685684
if(it==constant_pool.end())
686685
{
687686
error() << "invalid double entry" << eom;
@@ -698,7 +697,7 @@ void java_bytecode_parsert::rconstant_pool()
698697
s.resize(bytes);
699698
for(auto &ch : s)
700699
ch = read<u1>();
701-
it->s=s; // hashes
700+
it->s = s; // Add to string table
702701
}
703702
break;
704703

0 commit comments

Comments
 (0)