Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

very minor parameter name changes #1126

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
Expand Up @@ -162,13 +162,13 @@ public PluginDescriptionFile getPluginDescription(File file) throws InvalidDescr
if (jar != null) {
try {
jar.close();
} catch (IOException e) {
} catch (IOException ignored) {
}
}
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
} catch (IOException ignored) {
}
}
}
Expand All @@ -189,7 +189,7 @@ Class<?> getClassByName(final String name) {

try {
cachedClass = loader.findClass(name, false);
} catch (ClassNotFoundException cnfe) {}
} catch (ClassNotFoundException ignored) {}
if (cachedClass != null) {
return cachedClass;
}
Expand Down