iOSDev
iOSDev

Reputation: 3617

Error : The type Class is not generic; it cannot be parameterized with arguments <T>

I am using Blackberry plug in for eclipse. Default jre setting is 1.6 I am getting following error which doesnt allow me to compile my .java file :

The type Class is not generic; it cannot be parameterized with arguments

Please help.

Upvotes: 1

Views: 2438

Answers (1)

Philipp
Philipp

Reputation: 7659

Classes for J2ME projects must be compiled to be version 1.3 compliant. => no generics, enums, extended-for .....

But it should fix your problem :)

Upvotes: 3

Related Questions