-
-
Notifications
You must be signed in to change notification settings - Fork 57
Bump Perl from 5.40 to 5.42. Remove some older versions from the CI test. #738
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
exercises/concept/booking-up-for-beauty/.meta/BookingUpForBeauty.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package BookingUpForBeauty; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Time::Piece; | ||
| #use Const::Fast; | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
exercises/concept/booking-up-for-beauty/lib/BookingUpForBeauty.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package BookingUpForBeauty; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| # Suggested datetime modules you can use: | ||
| #use Time::Piece; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package HighScoreBoard; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| our %Scores; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package HighScoreBoard; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| our %Scores; | ||
|
|
||
|
|
||
2 changes: 1 addition & 1 deletion
2
exercises/concept/inventory-management/.meta/InventoryManagement.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package InventoryManagement; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| sub create_inventory ($items) { | ||
| my %inventory; | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
exercises/concept/inventory-management/lib/InventoryManagement.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package InventoryManagement; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| sub create_inventory ($items) { | ||
| my %inventory; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package LanguageList; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
| use List::Util qw<any>; | ||
|
|
||
| our @Languages; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package LanguageList; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| our @Languages; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Lasagna; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| our $ExpectedMinutesInOven = 40; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Lasagna; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| our $ExpectedMinutesInOven = undef; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Accumulate; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<accumulate>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Acronym; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<abbreviate>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package AffineCipher; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<encode decode>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package AllYourBase; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<rebase>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Anagram; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<match_anagrams>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| use v5.40; | ||
| use v5.42; | ||
| use experimental qw<class>; | ||
|
|
||
| class BinarySearchTree; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package BinarySearch; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<binary_search>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| # Declare package 'Bob' | ||
| package Bob; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<hey>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package BottleSong; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<sing>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| use v5.40; | ||
| use v5.42; | ||
| use experimental qw<class>; | ||
|
|
||
| class CircularBuffer; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| use v5.40; | ||
| use v5.42; | ||
| use experimental qw<class>; | ||
|
|
||
| class Clock; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package CollatzConjecture; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<steps>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package CryptoSquare; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<cipher>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| use v5.40; | ||
| use v5.42; | ||
| use experimental qw<class>; | ||
|
|
||
| class CustomSet; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Darts; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<score_dart>; | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
exercises/practice/difference-of-squares/lib/DifferenceOfSquares.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| use v5.40; | ||
| use v5.42; | ||
| use experimental qw<class>; | ||
|
|
||
| class DndCharacter; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package EliudsEggs; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<egg_count>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package ETL; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<transform>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package FoodChain; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<recite>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Gigasecond; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<add_gigasecond>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| use v5.40; | ||
| use v5.42; | ||
| use experimental qw<class>; | ||
|
|
||
| class GradeSchool; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Hamming; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<hamming_distance>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package House; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<recite>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Isogram; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<is_isogram>; | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
exercises/practice/kindergarten-garden/lib/KindergartenGarden.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package KindergartenGarden; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<plants>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Knapsack; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<maximum_value>; | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
exercises/practice/largest-series-product/lib/LargestSeriesProduct.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package ListOps; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| sub append ( $list1, $list2 ) { | ||
| return undef; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Luhn; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<is_luhn_valid>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Matrix; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<extract_row extract_column>; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| package Meetup; | ||
|
|
||
| use v5.40; | ||
| use v5.42; | ||
|
|
||
| use Exporter qw<import>; | ||
| our @EXPORT_OK = qw<meetup>; | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.