Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I'm coding a bukkit plugin. It's player counter per world and scoreboard. Really simple, but I have some problems with the code.
Take a look at it.
http://pastebin.com/PCEj0Vkj
I don't see the error, but compilator says that there are errors in:
http://prntscr.com/4vaegq
and on last line on "}"
I would love to show you error log and more screenshots, but I need 10+ reps.
All of your code, starting at line 25 and ending at line 45 needs to go in either an initialisation block or inside a method body.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 months ago.
Improve this question
There are two methods of file deletion
1. file.delete()
2. file.deleteOnExit()
The file is not deleted and returns false and have tried both the cases. Now I need to find the actual reason why the deletion has not happened
How to find out the reason? Is any log needs to be enabled or trace out the issue?
There are more than two methods of deleting a file!
You can use the utility class java.nio.file.Files:
Files.delete(path);
will throw an IOException that will tell you the reason it failed.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
Intellj takes time to open (about 5 to 6 mins). I have deleted pulgins removing files from my laptop , but it didn't work
Almost all softwares including IDEs have logs. For intellij, too. Look at following link. Get the logs. If possible enable verbose\debug log. See the time stamps if present. That should tell what task is taking too long.
https://intellij-support.jetbrains.com/hc/en-us/articles/207241085-Locating-IDE-log-files
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I am getting an error in my project, No variants found for 'app'. Check build files to ensure at least one variant exists.
Screenshot
your gradle build may have failed. make sure you have build.gradle, open the file and do Sync now, look for errors to tell you what is wrong.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I would like to use a function that would skip the loop for one iteration. I found out that continue works in Java, but it doesn't seem to work in Python. Is there an equivalent of continue in Python, and if so, what is it?
Refer to the official python documentation for information on continue in python.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
So I am getting a NullPointerException on the same line of code no matter how I change it. Even if I put a blank line there is still the same error on same line. Has anyone else had this happen? I'm pretty confused as to what could cause this.
edit: Should have mentioned I wasn't planning on posting my hundreds of lines of code as the error is always on line 317. Just trying to figure out if anyone else has had a similar problem and what the cause was. Also yes I have checked that I am debugging and running correct code.
It sounds to me like there is an issue with your environment. I would step back and make sure you are running or debugging the code you think you are.