Skip to content

Commit

Permalink
docs: Remove repetitive please from GiniBank and GiniCapture docs
Browse files Browse the repository at this point in the history
PIA-4595
  • Loading branch information
abolfazlimahdi committed Oct 30, 2023
1 parent 625c28a commit b218878
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions bank-sdk/sdk/src/main/java/net/gini/android/bank/sdk/GiniBank.kt
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ object GiniBank {
*
* Please provide the required transfer summary to improve the future extraction accuracy.
*
* Please follow the recommendations below:
* - Please make sure to call this method before calling [releaseCapture] if the user has completed TAN verification.
* - Please provide values for all necessary fields, including those that were not extracted.
* Follow the recommendations below:
* - Make sure to call this method before calling [releaseCapture] if the user has completed TAN verification.
* - Provide values for all necessary fields, including those that were not extracted.
* - Provide the final data approved by the user (and not the initially extracted only).
* - Send the transfer summary after TAN verification and provide the extraction values the user has used.
*
Expand Down Expand Up @@ -170,9 +170,9 @@ object GiniBank {
* Frees up resources used by the capture flow.
*
* Please provide the required transfer summary to improve the future extraction accuracy.
* Please follow the recommendations below:
* Follow the recommendations below:
*
* - Please provide values for all necessary fields, including those that were not extracted.</li>
* - Provide values for all necessary fields, including those that were not extracted.</li>
* - Provide the final data approved by the user (and not the initially extracted only).</li>
* - Do cleanup after TAN verification.to clean up and provide the extraction values the user has used.</li>
*
Expand All @@ -184,7 +184,7 @@ object GiniBank {
* @param bic bank identification code
* @param amount accepts extracted amount and currency
*
* @deprecated Please use [sendTransferSummary] to provide the required transfer summary first (if the user has completed TAN verification) and then [releaseCapture] to let the SDK free up used resources.
* @deprecated Use [sendTransferSummary] to provide the required transfer summary first (if the user has completed TAN verification) and then [releaseCapture] to let the SDK free up used resources.
*/
@Deprecated(
"Please use sendTransferSummary() to provide the required transfer summary first (if the user has completed TAN verification) and then releaseCapture() to let the SDK free up used resources.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ public static synchronized Builder newInstance(final Context context) {
* Provides transfer summary to Gini.
*
* <p>Please provide the required transfer summary to improve the future extraction accuracy.
* Please follow the recommendations below:
* Follow the recommendations below:
* <ul>
* <li>Please make sure to call this method before calling {@link #cleanup(Context)} if the user has completed TAN verification.</li>
* <li>Please provide values for all necessary fields, including those that were not extracted.</li>
* <li>Make sure to call this method before calling {@link #cleanup(Context)} if the user has completed TAN verification.</li>
* <li>Provide values for all necessary fields, including those that were not extracted.</li>
* <li>Provide the final data approved by the user (and not the initially extracted only).</li>
* <li>Send the transfer summary after TAN verification and provide the extraction values the user has used.</li>
* </ul>
Expand Down Expand Up @@ -260,10 +260,10 @@ public void cancelled() {
* Destroys the {@link GiniCapture} instance and frees up used resources.
*
* <p>Please provide the required transfer summary to improve the future extraction accuracy.
* Please follow the recommendations below:
* Follow the recommendations below:
*
* <ul>
* <li>Please provide values for all necessary fields, including those that were not extracted.</li>
* <li>Provide values for all necessary fields, including those that were not extracted.</li>
* <li>Provide the final data approved by the user (and not the initially extracted only).</li>
* <li>Do cleanup after TAN verification.to clean up and provide the extraction values the user has used.</li>
* </ul>
Expand All @@ -275,7 +275,7 @@ public void cancelled() {
* @param iban international bank account
* @param bic bank identification code
* @param amount accepts extracted amount and currency
* @deprecated Please use {@link #sendTransferSummary(String, String, String, String, String, Amount)} to provide the required transfer summary first (if the user has completed TAN verification) and then {@link #cleanup(Context)} to let the SDK free up used resources.
* @deprecated Use {@link #sendTransferSummary(String, String, String, String, String, Amount)} to provide the required transfer summary first (if the user has completed TAN verification) and then {@link #cleanup(Context)} to let the SDK free up used resources.
*
*/

Expand Down

0 comments on commit b218878

Please sign in to comment.