Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
consuelita committed Feb 3, 2023
1 parent 8f9d549 commit fc5a20d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ class MainActivity : AppCompatActivity()
}

testTCPButton.setOnClickListener {
testTCPClicked()
testTCPTapped()
}

testUDPButton.setOnClickListener {
testUDPTapped()
}

stopVPNButton.setOnClickListener {
stopVPNButtonTapped()
stopVPNTapped()
}
}

Expand Down Expand Up @@ -116,7 +116,7 @@ class MainActivity : AppCompatActivity()

}

fun stopVPNButtonTapped() {
fun stopVPNTapped() {
println("Stop VPN Clicked.")
resultText.text = "Stop VPN Tapped."

Expand All @@ -140,7 +140,7 @@ class MainActivity : AppCompatActivity()
}
}

fun testTCPClicked()
fun testTCPTapped()
{
println("Test TCP Clicked.")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class StatusReceiver : BroadcastReceiver()
override fun onReceive(context: Context, intent: Intent)
{
// This method is called when the BroadcastReceiver is receiving an Intent broadcast.
var statusString = "Received a status update."
val statusString: String

if (intent.action == MBAKVpnService.vpnStatusNotification)
{
Expand Down

0 comments on commit fc5a20d

Please sign in to comment.