Skip to content

Commit 7a1d276

Browse files
committed
Remove debugging output, bump to 1.0.9.6
1 parent 233743b commit 7a1d276

File tree

4 files changed

+4
-22
lines changed

4 files changed

+4
-22
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This fork:
1313

1414
Gradle:
1515
```groovy
16-
compile 'io.woo:htmltopdf:1.0.9.5'
16+
compile 'io.woo:htmltopdf:1.0.9.6'
1717
```
1818

1919
Maven:
@@ -28,7 +28,7 @@ Maven:
2828
<dependency>
2929
<groupId>com.github.MagentaHealth</groupId>
3030
<artifactId>htmltopdf-java</artifactId>
31-
<version>1.0.9.5</version>
31+
<version>1.0.9.6</version>
3232
</dependency>
3333
```
3434

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'io.woo'
2-
version '1.0.9.5'
2+
version '1.0.9.6'
33

44
apply plugin: 'java'
55
apply plugin: 'maven'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.github.MagentaHealth</groupId>
77
<artifactId>htmltopdf-java</artifactId>
8-
<version>1.0.9.5</version>
8+
<version>1.0.9.6</version>
99

1010
<dependencies>
1111
<dependency>

src/main/java/io/woo/htmltopdf/wkhtmltopdf/WkHtmlToPdfLoader.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,8 @@ static WkHtmlToPdf load() {
2626
}
2727

2828
String libPath = getLibraryResource();
29-
System.out.println("Attempting to load: " + libPath);
30-
3129
File libraryFile = new File(tmpDir, libPath);
3230

33-
try {
34-
System.out.println("libraryFile.getAbsolutePath(): " + libraryFile.getAbsolutePath());
35-
System.out.println("libraryFile.getCanonicalPath(): " + libraryFile.getCanonicalPath());
36-
System.out.println("libraryFile.getName(): " + libraryFile.getName());
37-
System.out.println("libraryFile.getPath(): " + libraryFile.getPath());
38-
System.out.println("libraryFile.toString(): " + libraryFile.toString());
39-
}
40-
catch (IOException e) {
41-
throw new RuntimeException(e);
42-
}
43-
4431
if (!libraryFile.exists()) {
4532
try {
4633
File dirPath = libraryFile.getParentFile();
@@ -90,15 +77,10 @@ else if (Platform.isLinux()) {
9077
String id = osReleaseProperties.getProperty("ID");
9178
String versionCodename = osReleaseProperties.getProperty("VERSION_CODENAME");
9279

93-
System.out.println("id: " + id);
94-
System.out.println("versionCodename: " + versionCodename);
95-
9680
libPath += "." + id;
9781
libPath += "." + versionCodename;
9882
libPath += Platform.isARM() ? ".arm64" : ".amd64";
9983
libPath += ".so";
100-
101-
System.out.println("libPath: " + libPath);
10284
}
10385
else {
10486
throw new RuntimeException("Your platform is unsupported. What platform is this?");

0 commit comments

Comments
 (0)