diff options
author | Marvin Borner | 2018-09-05 01:15:32 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-05 01:15:32 +0200 |
commit | ed96289a395e4b3549f69cced49701d205c85eb2 (patch) | |
tree | e2f520607c2c729cfeeb5cef07ef710a707b0016 /app/src/main/java/me/texx/Texx/BugReportActivity.kt | |
parent | 8e2cf1b4a93c0152e9f3d44a77a66fe4d1584dc2 (diff) |
Applied constant naming convention :pencil2:
Diffstat (limited to 'app/src/main/java/me/texx/Texx/BugReportActivity.kt')
-rw-r--r-- | app/src/main/java/me/texx/Texx/BugReportActivity.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/me/texx/Texx/BugReportActivity.kt b/app/src/main/java/me/texx/Texx/BugReportActivity.kt index d6a11ba..947c720 100644 --- a/app/src/main/java/me/texx/Texx/BugReportActivity.kt +++ b/app/src/main/java/me/texx/Texx/BugReportActivity.kt @@ -32,7 +32,7 @@ class BugReportActivity : AppCompatActivity() { setContentView(R.layout.activity_bug_report) val debugInformation = getDebugInformation() - debug_text.text = debugInformation + text_debug.text = debugInformation fab.setOnClickListener { submitToGithub(debugInformation) |