Skip to content

Commit

Permalink
Be silent on MakerNote parse errors. Printing a stack trace can be ir…
Browse files Browse the repository at this point in the history
…ritating.
  • Loading branch information
StefanOltmann committed Feb 29, 2024
1 parent 80028c8 commit 9d59888
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ of Ashampoo Photos, which, in turn, is driven by user community feedback.
## Installation

```
implementation("com.ashampoo:kim:0.15")
implementation("com.ashampoo:kim:0.15.1")
```

## Sample usages
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ koverMerged {
}

dependencies {
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.4")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.5")
}

kotlin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,10 @@ object TiffReader {
return makerNoteDirectory

} catch (ignore: Exception) {

/* Interpreting the Maker Note is optional. */
@Suppress("PrintStackTrace")
ignore.printStackTrace()
/*
* Be silent here.
* MakerNote support is experimental.
*/
}
}

Expand Down

0 comments on commit 9d59888

Please sign in to comment.