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

Commit 9fd07033 authored by Chulwoo Lee's avatar Chulwoo Lee Committed by android-build-merger
Browse files

Fix build

am: 65fa5ea4

* commit '65fa5ea4':
  Fix build
parents 8cf4c427 65fa5ea4
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();
            }