Reverse Engineering Java 7 code not supported?

Hello,

I am using Visual Paradigm 10.1 Standard Edition Build 20130509 and some Java classes cannot be reverse engineered.

Is it not yet supported in Visual Paradigm?

I am on Linux, the no install version. Is the problem maybe that the integrated jre is only Java 1.6?

Thanks for your help in advance :slight_smile:

I now registered here :slight_smile:

attached the error log.

Does someone know what’s wrong?

EDIT: I changed the jre version to 1.7, error stays.

What’s wrong here?
vpuml.log

I attached my error log:
vpuml.log

Probably because you use the diamond operator :

…
final Map<String, String> map = new HashMap<>();

I don’t know how to workaround this problem.

final Map<String, String> map = new HashMap<>();

you should put like this for this error

final Map<String, String> map = new HashMap<String, String>();
it will be work.