DEV Community

Discussion on: Removing self from Android implicit intent

Collapse
 
chrisvasqm profile image
Christian Vasquez • Edited

Hey daisy1754,

Thanks for sharing this!

Side note:

If you add the word "java" right after the triple backtick on the code block it will make your code easier to read.

Examples

Without "java"

public void main(String[] args) {
    System.out.println("Hello World!");
}

With "java"

public void main(String[] args) {
    System.out.println("Hello World!");
}