-
Notifications
You must be signed in to change notification settings - Fork 16
Task/dtserwfour 235 display currency codes beneath available funds labels #250
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
vwagh-hw
merged 17 commits into
development
from
task/DTSERWFOUR-235-Display-currency-codes-beneath-Available-Funds-labels
Mar 16, 2021
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
67dba38
task/DTSERWFOUR-235-Display-currency-codes-beneath-Available-Funds-la…
shanavas123 ed49df0
update unit test case
shanavas123 bdaf69d
update UI changes in CreateTransfer Screen.
shanavas123 77d1028
update Unit test.
shanavas123 2bc3316
update Unit test.
shanavas123 e44e0cb
fix transfer source ui for larger text.
shanavas123 513322a
fixed failed UI test causes.
shanavas123 4d0d643
address review comments
shanavas123 761a7b1
Added PrepaidCardBalanceRepository in UI SDK
shanavas123 c2a98e0
Added PrepaidCardBalanceRepository in UI SDK
shanavas123 5c62c4c
fixed package name
shanavas123 63ee7c8
UIcases for Currencycode validation
SaiNarendran 4ee849b
Address review comments
shanavas123 f5e629f
Merge branch 'task/DTSERWFOUR-235-Display-currency-codes-beneath-Avai…
shanavas123 f0a6996
address review comments.
shanavas123 923e414
Merge branch 'development' into task/DTSERWFOUR-235-Display-currency-…
malaw-hw 953047d
address review comments.
shanavas123 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| /build |
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 |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| apply from: "$rootProject.projectDir/android-library.gradle" | ||
| description = 'Hyperwallet Balance Repository SDK for Android to integrate with the Hyperwallet Platform' | ||
| project.ext { | ||
| mavenName = 'Hyperwallet Android Balance Repository SDK' | ||
| } | ||
| apply from: "$rootProject.projectDir/publish.gradle" | ||
|
|
||
| dependencies { | ||
| testImplementation "org.robolectric:robolectric:$robolectricVersion" | ||
| testImplementation "com.squareup.okhttp3:mockwebserver:$mockWebServerVersion" | ||
| testImplementation project(':testutils') | ||
| } |
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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # Add project specific ProGuard rules here. | ||
| # You can control the set of applied configuration files using the | ||
| # proguardFiles setting in build.gradle. | ||
| # | ||
| # For more details, see | ||
| # http://developer.android.com/guide/developing/tools/proguard.html | ||
|
|
||
| # If your project uses WebView with JS, uncomment the following | ||
| # and specify the fully qualified class name to the JavaScript interface | ||
| # class: | ||
| #-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
| # public *; | ||
| #} | ||
|
|
||
| # Uncomment this to preserve the line number information for | ||
| # debugging stack traces. | ||
| #-keepattributes SourceFile,LineNumberTable | ||
|
|
||
| # If you keep the line number information, uncomment this to | ||
| # hide the original source file name. | ||
| #-renamesourcefileattribute SourceFile |
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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| <manifest | ||
| package="com.hyperwallet.android.ui.balance.repository"/> |
47 changes: 47 additions & 0 deletions
47
...main/java/com/hyperwallet/android/ui/balance/repository/PrepaidCardBalanceRepository.java
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 |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| /* | ||
| * Copyright 2018 Hyperwallet | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
| * to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
| * the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
| * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
| package com.hyperwallet.android.ui.balance.repository; | ||
|
|
||
| import androidx.annotation.NonNull; | ||
|
|
||
| import com.hyperwallet.android.model.Errors; | ||
| import com.hyperwallet.android.model.balance.Balance; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| public interface PrepaidCardBalanceRepository { | ||
| /** | ||
| * Load prepaid card balances | ||
| */ | ||
| void loadPrepaidCardBalances(String prepaidCardToken, @NonNull final LoadPrepaidCardBalanceCallback callback); | ||
|
|
||
| /** | ||
| * Load prepaid card balance callback | ||
| */ | ||
| interface LoadPrepaidCardBalanceCallback { | ||
| /** | ||
| * On prepaid card balance list loaded | ||
| */ | ||
| void onPrepaidCardBalanceLoaded(@NonNull final List<Balance> balances); | ||
|
|
||
| /** | ||
| * On error | ||
| */ | ||
| void onError(@NonNull final Errors errors); | ||
| } | ||
| } | ||
43 changes: 43 additions & 0 deletions
43
...va/com/hyperwallet/android/ui/balance/repository/PrepaidCardBalanceRepositoryFactory.java
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 |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| /* | ||
| * Copyright 2018 Hyperwallet | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
| * to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
| * the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
| * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
| package com.hyperwallet.android.ui.balance.repository; | ||
shanavas123 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| public class PrepaidCardBalanceRepositoryFactory { | ||
| private static PrepaidCardBalanceRepositoryFactory sInstance; | ||
| private PrepaidCardBalanceRepository mPrepaidCardBalanceRepository; | ||
|
|
||
| private PrepaidCardBalanceRepositoryFactory() { | ||
| mPrepaidCardBalanceRepository = new PrepaidCardBalanceRepositoryImpl(); | ||
| } | ||
|
|
||
| public static synchronized PrepaidCardBalanceRepositoryFactory getInstance() { | ||
| if (sInstance == null) { | ||
| sInstance = new PrepaidCardBalanceRepositoryFactory(); | ||
| } | ||
| return sInstance; | ||
| } | ||
|
|
||
| public static void clearInstance() { | ||
| sInstance = null; | ||
| } | ||
|
|
||
| public PrepaidCardBalanceRepository getPrepaidCardBalanceRepository() { | ||
| return mPrepaidCardBalanceRepository; | ||
| } | ||
|
|
||
| } | ||
73 changes: 73 additions & 0 deletions
73
.../java/com/hyperwallet/android/ui/balance/repository/PrepaidCardBalanceRepositoryImpl.java
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 |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| /* | ||
| * Copyright 2018 Hyperwallet | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
| * to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
| * the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
| * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
| package com.hyperwallet.android.ui.balance.repository; | ||
|
|
||
| import android.os.Handler; | ||
|
|
||
| import androidx.annotation.NonNull; | ||
| import androidx.annotation.Nullable; | ||
| import androidx.annotation.VisibleForTesting; | ||
|
|
||
| import com.hyperwallet.android.Hyperwallet; | ||
| import com.hyperwallet.android.exception.HyperwalletException; | ||
| import com.hyperwallet.android.listener.HyperwalletListener; | ||
| import com.hyperwallet.android.model.balance.Balance; | ||
| import com.hyperwallet.android.model.balance.PrepaidCardBalanceQueryParam; | ||
| import com.hyperwallet.android.model.paging.PageList; | ||
|
|
||
| import java.util.ArrayList; | ||
|
|
||
| public class PrepaidCardBalanceRepositoryImpl implements PrepaidCardBalanceRepository { | ||
|
|
||
| private final Handler mHandler = new Handler(); | ||
| private final int LIMIT = 100; | ||
|
|
||
| @VisibleForTesting | ||
| Hyperwallet getHyperwallet() { | ||
| return Hyperwallet.getDefault(); | ||
| } | ||
|
|
||
|
|
||
| @Override | ||
| public void loadPrepaidCardBalances(String prepaidCardToken, | ||
| @NonNull final LoadPrepaidCardBalanceCallback callback) { | ||
| PrepaidCardBalanceQueryParam queryParam = new PrepaidCardBalanceQueryParam.Builder() | ||
| .limit(LIMIT) | ||
| .sortByCurrencyAsc() | ||
| .build(); | ||
|
|
||
| getHyperwallet().listPrepaidCardBalances(prepaidCardToken, queryParam, | ||
| new HyperwalletListener<PageList<Balance>>() { | ||
| @Override | ||
| public void onSuccess(@Nullable PageList<Balance> result) { | ||
| callback.onPrepaidCardBalanceLoaded( | ||
| result != null ? result.getDataList() : new ArrayList<Balance>()); | ||
| } | ||
|
|
||
| @Override | ||
| public void onFailure(HyperwalletException exception) { | ||
| callback.onError(exception.getErrors()); | ||
| } | ||
|
|
||
| @Override | ||
| public Handler getHandler() { | ||
| return mHandler; | ||
| } | ||
| }); | ||
| } | ||
| } |
56 changes: 56 additions & 0 deletions
56
...ry/src/main/java/com/hyperwallet/android/ui/balance/repository/UserBalanceRepository.java
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 |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| /* | ||
| * Copyright 2018 Hyperwallet | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
| * to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
| * the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
| * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
| package com.hyperwallet.android.ui.balance.repository; | ||
|
|
||
| import androidx.annotation.NonNull; | ||
|
|
||
| import com.hyperwallet.android.model.Errors; | ||
| import com.hyperwallet.android.model.balance.Balance; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| /** | ||
| * User balance repository | ||
| */ | ||
| public interface UserBalanceRepository { | ||
| /** | ||
| * Load user balances | ||
| * | ||
| * @param callback | ||
| */ | ||
| void loadUserBalances(@NonNull final LoadUserBalanceListCallback callback); | ||
|
|
||
| /** | ||
| * Load User balance callback | ||
| */ | ||
| interface LoadUserBalanceListCallback { | ||
| /** | ||
| * User balance loaded callback | ||
| * | ||
| * @param balances | ||
| */ | ||
| void onUserBalanceListLoaded(@NonNull final List<Balance> balances); | ||
|
|
||
| /** | ||
| * User balance load error | ||
| * | ||
| * @param errors | ||
| */ | ||
| void onError(@NonNull final Errors errors); | ||
| } | ||
| } |
42 changes: 42 additions & 0 deletions
42
...main/java/com/hyperwallet/android/ui/balance/repository/UserBalanceRepositoryFactory.java
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 |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| /* | ||
| * Copyright 2018 Hyperwallet | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
| * to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
| * the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
| * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
| package com.hyperwallet.android.ui.balance.repository; | ||
|
|
||
| public class UserBalanceRepositoryFactory { | ||
| private static UserBalanceRepositoryFactory sInstance; | ||
| private UserBalanceRepository mUserBalanceRepository; | ||
|
|
||
| private UserBalanceRepositoryFactory() { | ||
| mUserBalanceRepository = new UserBalanceRepositoryImpl(); | ||
| } | ||
|
|
||
| public static synchronized UserBalanceRepositoryFactory getInstance() { | ||
| if (sInstance == null) { | ||
| sInstance = new UserBalanceRepositoryFactory(); | ||
| } | ||
| return sInstance; | ||
| } | ||
|
|
||
| public static void clearInstance() { | ||
| sInstance = null; | ||
| } | ||
|
|
||
| public UserBalanceRepository getUserBalanceRepository() { | ||
| return mUserBalanceRepository; | ||
| } | ||
| } |
66 changes: 66 additions & 0 deletions
66
...rc/main/java/com/hyperwallet/android/ui/balance/repository/UserBalanceRepositoryImpl.java
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 |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| /* | ||
| * Copyright 2018 Hyperwallet | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
| * to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
| * the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
| * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
|
|
||
| package com.hyperwallet.android.ui.balance.repository; | ||
|
|
||
| import android.os.Handler; | ||
|
|
||
| import androidx.annotation.NonNull; | ||
| import androidx.annotation.Nullable; | ||
| import androidx.annotation.VisibleForTesting; | ||
|
|
||
| import com.hyperwallet.android.Hyperwallet; | ||
| import com.hyperwallet.android.exception.HyperwalletException; | ||
| import com.hyperwallet.android.listener.HyperwalletListener; | ||
| import com.hyperwallet.android.model.balance.Balance; | ||
| import com.hyperwallet.android.model.balance.BalanceQueryParam; | ||
| import com.hyperwallet.android.model.paging.PageList; | ||
|
|
||
| import java.util.ArrayList; | ||
|
|
||
| public class UserBalanceRepositoryImpl implements UserBalanceRepository { | ||
|
|
||
| private final Handler mHandler = new Handler(); | ||
| private final int LIMIT = 100; | ||
|
|
||
| @VisibleForTesting | ||
| Hyperwallet getHyperwallet() { | ||
| return Hyperwallet.getDefault(); | ||
| } | ||
|
|
||
| @Override | ||
| public void loadUserBalances(@NonNull final LoadUserBalanceListCallback callback) { | ||
| BalanceQueryParam queryParam = new BalanceQueryParam.Builder().limit(LIMIT).build(); | ||
| getHyperwallet().listUserBalances(queryParam, new HyperwalletListener<PageList<Balance>>() { | ||
| @Override | ||
| public void onSuccess(@Nullable PageList<Balance> result) { | ||
| callback.onUserBalanceListLoaded(result != null ? result.getDataList() : new ArrayList<Balance>()); | ||
| } | ||
|
|
||
| @Override | ||
| public void onFailure(HyperwalletException exception) { | ||
| callback.onError(exception.getErrors()); | ||
| } | ||
|
|
||
| @Override | ||
| public Handler getHandler() { | ||
| return mHandler; | ||
| } | ||
| }); | ||
| } | ||
| } |
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.