Skip to content

Commit

Permalink
Second partial fix for #118
Browse files Browse the repository at this point in the history
  • Loading branch information
artpar committed Sep 4, 2024
1 parent 672de89 commit 08b099d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<artifactId>unlogged-sdk</artifactId>
<groupId>video.bug</groupId>
<version>0.7.5</version>
<version>0.7.6</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/unlogged/logging/ObjectMapperFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ protected <A extends Annotation> A _findAnnotation(Annotated ann, Class<A> annoC
String mainAnnoClassName = annoClass.getName().substring("selogger.".length());
Class<A> mainAnnoClass = (Class<A>) Class.forName(mainAnnoClassName);
value = ann.getAnnotation(mainAnnoClass);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (ClassNotFoundException ignored) {
// e.printStackTrace();
}

if (value != null && Proxy.isProxyClass(value.getClass())) {
Expand Down

0 comments on commit 08b099d

Please sign in to comment.