diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2023-01-21 15:23:15 +0100 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2023-01-21 15:23:15 +0100 |
| commit | cf93c94fc43bdb19160555747409b0a59b0c5f6b (patch) | |
| tree | 13e8382b44ceb549c5aac2f869f46919f56153a5 /src | |
| parent | 0e68756758d5d0266fc8656363a37adc58f0b803 (diff) | |
| download | invidious-cf93c94fc43bdb19160555747409b0a59b0c5f6b.tar.gz invidious-cf93c94fc43bdb19160555747409b0a59b0c5f6b.tar.bz2 invidious-cf93c94fc43bdb19160555747409b0a59b0c5f6b.zip | |
Formatting fix for Crystal nightly
Changes added by https://github.com/crystal-lang/crystal/pull/12951
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/helpers/json_filter.cr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/invidious/helpers/json_filter.cr b/src/invidious/helpers/json_filter.cr index b8e8f96d..3f4080ba 100644 --- a/src/invidious/helpers/json_filter.cr +++ b/src/invidious/helpers/json_filter.cr @@ -20,7 +20,7 @@ module JSONFilter /^\(|\(\(|\/\(/ end - def self.parse_fields(fields_text : String) : Nil + def self.parse_fields(fields_text : String, &) : Nil if fields_text.empty? raise FieldsParser::ParseError.new "Fields is empty" end @@ -42,7 +42,7 @@ module JSONFilter parse_nest_groups(fields_text) { |nest_list| yield nest_list } end - def self.parse_single_nests(fields_text : String) : Nil + def self.parse_single_nests(fields_text : String, &) : Nil single_nests = remove_nest_groups(fields_text) if !single_nests.empty? @@ -60,7 +60,7 @@ module JSONFilter end end - def self.parse_nest_groups(fields_text : String) : Nil + def self.parse_nest_groups(fields_text : String, &) : Nil nest_stack = [] of NamedTuple(group_name: String, closing_bracket_index: Int64) bracket_pairs = get_bracket_pairs(fields_text, true) |
