Merge pull request #1441 from DafabHoid/fixdownloadercrashrelease

Downloader: Fix crash on loading unfinished downloads from .giga files (Fixup for release builds)
This commit is contained in:
Christian Schabesberger 2018-06-03 12:08:20 +02:00 committed by GitHub
commit 93d1e8b2ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -42,3 +42,9 @@
-dontwarn javax.annotation.** -dontwarn javax.annotation.**
# A resource is loaded with a relative path so the package of this class must be preserved. # A resource is loaded with a relative path so the package of this class must be preserved.
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase -keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
!static !transient <fields>;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
}