Skip to content

Commit 89db41f

Browse files
author
NatureFreshMeat
committed
Added logging
1 parent a2c9b2f commit 89db41f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/javascript/10_ConstantPoolParser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ var ConstantPoolParser = function(classReader)
99
*/
1010
var constant_pool_size = classReader.getU2(8);
1111

12-
//Logger.debug("Constant pool size: " + constant_pool_size);
13-
1412
var pos = 10;
13+
1514
/**
1615
* Constants array
1716
*/
@@ -22,6 +21,7 @@ var ConstantPoolParser = function(classReader)
2221
{
2322
var tag = classReader.getU1(pos++);
2423

24+
Logger.debug("Tag: " + tag);
2525

2626
if (tag == 1)
2727
{

0 commit comments

Comments
 (0)