Nice to see this group. I have been working on jacoco to implement code coverage of the product I am working on. For some classes, I am getting the subject exception. This problem comes when a method is having so many lines that exceeding Jacoco's limit (64KB). I googled for the possible solution of this problem and found to divide the method in multiple smaller methods. Dividing methods is very big task for me. Is there any other solution for this problem e.g.
1. Can increase this limit
2. Is there any commercial version of Jacoco that has more method size limit
Any help would be highly appreciated.
Thanks!
The value of the code_length item must be less than 65536.Thanks Evgeny! Appreciate it!