I have one module developed under java 5.0
package mypack;
class MessageParser {
public MessageParser(String s) {
......
}
}
I have another module developed under java 6.0
import mypack;
......
String str = someString;
MessageParser parser = new MessageParser(str);
......
But I got the error "cannot find symbol constructor MessageParser(java.lang.String)"
BTW: the IDE I am using is intellij idea
Could anyone tell me why and how to get it work?