Skip to content

Commit

Permalink
Merge pull request #75 from DarkWeird/5.1.5
Browse files Browse the repository at this point in the history
Minor patch: bump to version 5.1.5 - see #73 for further details on PR history
  • Loading branch information
casals committed Dec 6, 2019
2 parents fa1e156 + 511f65b commit fe18938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -41,6 +41,7 @@
import javax.annotation.Nullable;
import java.io.IOException;
import java.lang.annotation.Annotation;
import java.security.AccessControlException;
import java.net.URISyntaxException;
import java.net.URL;
import java.nio.file.FileSystem;
Expand Down Expand Up @@ -306,6 +307,8 @@ public Name getModuleProviding(Class<?> type) {
}
} catch (URISyntaxException e) {
logger.error("Failed to convert url to uri for comparison", e);
} catch (AccessControlException e) {
logger.error("Cannot determinate Module for type: {}", type.getName());
}
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1 +1 @@
version=5.1.4
version=5.1.5

0 comments on commit fe18938

Please sign in to comment.