Skip to content

Commit 6271e80

Browse files
committed
Rename parameter to make more clear its meaning
1 parent da1e53a commit 6271e80

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/src/main/java/org/gnucash/android/export/ExportAsyncTask.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ public void run() {
176176
/**
177177
* Transmits the exported transactions to the designated location, either SD card or third-party application
178178
* Finishes the activity if the export was starting in the context of an activity
179-
* @param exportResult Result of background export execution
179+
* @param exportSuccessful Result of background export execution
180180
*/
181181
@Override
182-
protected void onPostExecute(Boolean exportResult) {
183-
if (exportResult) {
182+
protected void onPostExecute(Boolean exportSuccessful) {
183+
if (exportSuccessful) {
184184
if (mContext instanceof Activity)
185185
reportSuccess();
186186

0 commit comments

Comments
 (0)