We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da1e53a commit 6271e80Copy full SHA for 6271e80
1 file changed
app/src/main/java/org/gnucash/android/export/ExportAsyncTask.java
@@ -176,11 +176,11 @@ public void run() {
176
/**
177
* Transmits the exported transactions to the designated location, either SD card or third-party application
178
* Finishes the activity if the export was starting in the context of an activity
179
- * @param exportResult Result of background export execution
+ * @param exportSuccessful Result of background export execution
180
*/
181
@Override
182
- protected void onPostExecute(Boolean exportResult) {
183
- if (exportResult) {
+ protected void onPostExecute(Boolean exportSuccessful) {
+ if (exportSuccessful) {
184
if (mContext instanceof Activity)
185
reportSuccess();
186
0 commit comments