Fix / revert bad refactor rename

This commit is contained in:
Valere 2019-07-09 15:04:13 +02:00
parent dba4df6836
commit fa81d1a9c7
2 changed files with 13 additions and 13 deletions

View File

@ -30,7 +30,7 @@ import kotlinx.android.synthetic.main.activity_bug_report.*
import timber.log.Timber import timber.log.Timber


/** /**
* Form to send a bug reportSubtask * Form to send a bug report
*/ */
class BugReportActivity : VectorBaseActivity() { class BugReportActivity : VectorBaseActivity() {


@ -56,7 +56,7 @@ class BugReportActivity : VectorBaseActivity() {


forSuggestion = intent.getBooleanExtra("FOR_SUGGESTION", false) forSuggestion = intent.getBooleanExtra("FOR_SUGGESTION", false)


// Default screen is for bug reportSubtask, so modify it for suggestion // Default screen is for bug report, so modify it for suggestion
if (forSuggestion) { if (forSuggestion) {
supportActionBar?.setTitle(R.string.send_suggestion) supportActionBar?.setTitle(R.string.send_suggestion)


@ -101,7 +101,7 @@ class BugReportActivity : VectorBaseActivity() {




/** /**
* Send the bug reportSubtask * Send the bug report
*/ */
private fun sendBugReport() { private fun sendBugReport() {
bug_report_scrollview.alpha = 0.3f bug_report_scrollview.alpha = 0.3f

View File

@ -68,7 +68,7 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
// the http client // the http client
private val mOkHttpClient = OkHttpClient() private val mOkHttpClient = OkHttpClient()


// the pending bug reportSubtask call // the pending bug report call
private var mBugReportCall: Call? = null private var mBugReportCall: Call? = null




@ -96,16 +96,16 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
private val LOGCAT_CMD_DEBUG = arrayOf("logcat", "-d", "-v", "threadtime", "*:*") private val LOGCAT_CMD_DEBUG = arrayOf("logcat", "-d", "-v", "threadtime", "*:*")


/** /**
* Bug reportSubtask upload listener * Bug report upload listener
*/ */
interface IMXBugReportListener { interface IMXBugReportListener {
/** /**
* The bug reportSubtask has been cancelled * The bug report has been cancelled
*/ */
fun onUploadCancelled() fun onUploadCancelled()


/** /**
* The bug reportSubtask upload failed. * The bug report upload failed.
* *
* @param reason the failure reason * @param reason the failure reason
*/ */
@ -119,13 +119,13 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
fun onProgress(progress: Int) fun onProgress(progress: Int)


/** /**
* The bug reportSubtask upload succeeded. * The bug report upload succeeded.
*/ */
fun onUploadSucceed() fun onUploadSucceed()
} }


/** /**
* Send a bug reportSubtask. * Send a bug report.
* *
* @param context the application context * @param context the application context
* @param forSuggestion true to send a suggestion * @param forSuggestion true to send a suggestion
@ -407,7 +407,7 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
override fun onPostExecute(reason: String?) { override fun onPostExecute(reason: String?) {
mBugReportCall = null mBugReportCall = null


// delete when the bug reportSubtask has been successfully sent // delete when the bug report has been successfully sent
for (file in mBugReportFiles) { for (file in mBugReportFiles) {
file.delete() file.delete()
} }
@ -431,7 +431,7 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
} }


/** /**
* Send a bug reportSubtask either with email or with Vector. * Send a bug report either with email or with Vector.
*/ */
fun openBugReportScreen(activity: Activity, forSuggestion: Boolean = false) { fun openBugReportScreen(activity: Activity, forSuggestion: Boolean = false) {
screenshot = takeScreenshot(activity) screenshot = takeScreenshot(activity)
@ -442,7 +442,7 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
} }


//============================================================================================================== //==============================================================================================================
// crash reportSubtask management // crash report management
//============================================================================================================== //==============================================================================================================


/** /**
@ -472,7 +472,7 @@ class BugReporter @Inject constructor(private val activeSessionHolder: ActiveSes
} }


/** /**
* Save the crash reportSubtask * Save the crash report
* *
* @param context the context * @param context the context
* @param crashDescription teh crash description * @param crashDescription teh crash description