Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81471f40 authored by Chulwoo Lee's avatar Chulwoo Lee Committed by android-build-merger
Browse files

Fix build am: 65fa5ea4

am: 9fd07033

* commit '9fd07033':
  Fix build
parents 15e08116 9fd07033
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1312,6 +1312,7 @@ public final class TvContract {

            private static final char DOUBLE_QUOTE = '"';
            private static final char COMMA = ',';
            private static final String DELIMITER = ",";

            private Genres() {}

@@ -1327,7 +1328,7 @@ public final class TvContract {
                String separator = "";
                for (String genre : genres) {
                    sb.append(separator).append(encodeToCsv(genre));
                    separator = COMMA;
                    separator = DELIMITER;
                }
                return sb.toString();
            }