Skip to content

Commit

Permalink
NoSuchMehthodError in the TV browser fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
GollmerSt committed Jan 25, 2021
1 parent bf1796c commit f8a9a02
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Documentation/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
A E N D E R U N G E N

Version 01.04.04

25.01.2021 In bestimmten F�llen gab es im TVBrowser ein NoSuchMehthodError. Gefixt.


Version 01.04.03

16.09.2020 Bei Problemen beim Laden der DLL oder ist der DVBViewer nicht installiert,
Expand Down
5 changes: 3 additions & 2 deletions src/devplugin/Date.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public class Date {

public Date(Calendar calendar) {
public Date(final Calendar calendar) {

}

Expand All @@ -20,7 +20,8 @@ public int getYear() {
return 0;
}

public void addDays(int t) {
public Date addDays(final int t) {
return null;
}

}
1 change: 0 additions & 1 deletion src/dvbviewertimerimport/control/Control.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import javax.xml.transform.stream.StreamSource;

import dvbviewertimerimport.dvbviewer.DVBViewer;
import dvbviewertimerimport.dvbviewer.DVBViewerCOM;
import dvbviewertimerimport.dvbviewer.DVBViewerEntry;
import dvbviewertimerimport.dvbviewer.DVBViewerService;
import dvbviewertimerimport.javanet.staxutils.IndentingXMLStreamWriter;
Expand Down
2 changes: 1 addition & 1 deletion src/dvbviewertimerimport/main/Versions.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import java.util.Collection;

public class Versions {
private static String VERSION = "01.04.03";
private static String VERSION = "01.04.04";
private static final String DVBVIEWER_COM_DLL_VERSION = "1.00.05";

public static String getVersion() {
Expand Down

0 comments on commit f8a9a02

Please sign in to comment.