diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2024-04-07 23:28:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-07 23:28:14 +0200 |
commit | e578f4ca93f6292f62e4b4c7fa11d17fe0b27c71 (patch) | |
tree | 383ed908c22d51fd789b8db814a4dc17e7d5dfb7 /net/sync | |
parent | fc40da28a7a9146cd1e3c11e5169477ba85399c1 (diff) | |
download | AntennaPod-e578f4ca93f6292f62e4b4c7fa11d17fe0b27c71.zip |
CI tweaks (#7069)
- Run Checkstyle with gradle to make it easier for users
- No longer needs different configuration for new code
- Exclude current violations
- Fix some violations that somehow couldn't be specified in the exclusion file
- Print SpotBugs/Lint/Checkstly violations in GitHub format
- Then the CI run gets annotated on the web UI
Diffstat (limited to 'net/sync')
-rw-r--r-- | net/sync/gpoddernet/src/main/java/de/danoeh/antennapod/net/sync/gpoddernet/model/GpodnetPodcast.java | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/net/sync/gpoddernet/src/main/java/de/danoeh/antennapod/net/sync/gpoddernet/model/GpodnetPodcast.java b/net/sync/gpoddernet/src/main/java/de/danoeh/antennapod/net/sync/gpoddernet/model/GpodnetPodcast.java index f09ab1244..53af3b328 100644 --- a/net/sync/gpoddernet/src/main/java/de/danoeh/antennapod/net/sync/gpoddernet/model/GpodnetPodcast.java +++ b/net/sync/gpoddernet/src/main/java/de/danoeh/antennapod/net/sync/gpoddernet/model/GpodnetPodcast.java @@ -12,15 +12,8 @@ public class GpodnetPodcast { private final String mygpoLink; private final String author; - public GpodnetPodcast(@NonNull String url, - @NonNull String title, - @NonNull String description, - int subscribers, - String logoUrl, - String website, - String mygpoLink, - String author - ) { + public GpodnetPodcast(@NonNull String url, @NonNull String title, @NonNull String description, int subscribers, + String logoUrl, String website, String mygpoLink, String author) { this.url = url; this.title = title; this.description = description; @@ -63,7 +56,9 @@ public class GpodnetPodcast { return website; } - public String getAuthor() { return author; } + public String getAuthor() { + return author; + } public String getMygpoLink() { return mygpoLink; |