-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
try warning #1
base: master
Are you sure you want to change the base?
try warning #1
Conversation
ee6e8b4
to
b4f64a6
Compare
b4f64a6
to
01b879b
Compare
@@ -9,7 +9,10 @@ | |||
import android.view.Menu; | |||
import android.view.MenuItem; | |||
|
|||
public class MainActivity extends AppCompatActivity { | |||
import android.support.v4.app.FragmentActivity; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused import - android.support.v4.app.FragmentActivity. |
@@ -9,7 +9,10 @@ | |||
import android.view.Menu; | |||
import android.view.MenuItem; | |||
|
|||
public class MainActivity extends AppCompatActivity { | |||
import android.support.v4.app.FragmentActivity; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[UnusedImports] Avoid unused imports such as ‘android.support.v4.app.FragmentActivity’ https://pmd.github.io/pmd-5.6.1/pmd-java/rules/java/imports.html#UnusedImports |
public class MainActivity extends AppCompatActivity { | ||
import android.support.v4.app.FragmentActivity; | ||
|
||
public class MainActivity extends AppCompatActivity |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a Javadoc comment. |
import android.support.v4.app.FragmentActivity; | ||
|
||
public class MainActivity extends AppCompatActivity | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
’{‘ at column 1 should be on the previous line. |
43175d4
to
5c6f0fd
Compare
No description provided.