Reputation: 9583
Before everything was fine but since some time i get "cannot find Symbol” when i try to compile. The errors are on my own classes.
If i jump to source and then click the error icon i get this:
But the constructor already exists. I have no idea of how to get rid of it. I did a lot of searching but none of the solutions like clean worked.
My project is under VCS which i don't really understand (how to set up etc). So maybe it has to do something with that. I only don't know how to get rid of it. Can someone help?
edit: Here is the zip of the project folder and one folder that includes a library that is used. I try to compile with build artifacts.
https://dl.dropboxusercontent.com/u/17630770/temp/doekeLibsArchive.zip
I hope someone can give it a try. I would love to continue on this project.
Upvotes: 3
Views: 3286
Reputation: 9649
The problem is coming from the fact you have two BezierVertex classes,
when you are inside BezierVertexPath, intellij is right nl.doekewartena.path.BezierVertexPath.BezierVertex does not have the constructor shown on your screenshot, it is nl.doekewartena.path.BezierVertex which has it, so you should use the fully qualified name of that class.
Am I missing something ?
Upvotes: 2