public class Gonderi {
int kullaniciId;
int gonderiId;
public void Gonderi(int kullaniciId, int gonderiId) {
super();
this.kullaniciId = kullaniciId;
this.gonderiId = gonderiId;
}
...
This is a part of my code. Compiler gives an error as "Call to super must be first statement in constructor". But super()
is already the first statement at the constructor. How can i solve this problem? Thanks.