You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do a git checkout prod and try again. The branch after cloning is in development is my guess.
The production branch seems to work fine to me. You might need to install some tools though, depending on your operating system.
I had a closer look at it. There seems to be missing the method below. Once you add it, it compiles. I did not test it though.
Maybe it is a bug that this part is missing or maybe the development is not finished yet.
private int getRandomPort(int defaultPort)
{
int randomPort = -1;
try {
Random r = new Random();
randomPort = r.nextInt(((defaultPort + portRange) - defaultPort) + 1) + defaultPort;
logger.log(Level.INFO, "Auto FDT on port " + randomPort);
new Thread(new Runnable() {
@Override
public void run() {
new FDTMain();
}
}, "FDT custom port " + randomPort).start();
}
catch (Exception e)
{
logger.log(Level.INFO, " FAILED auto FDT on port " + randomPort);
}
return randomPort;
}
getRandomPort()
method is referenced inlia.util.net.common.Config.java
but is not defined - leading to a "cannot find symbol" compilation errorlatest commit is 713139f
The text was updated successfully, but these errors were encountered: