Search code examples
javaandroidandroid-studiointellij-ideatodo

Is there a way to mark TODO complete in Android studio?


I'm trying to track TODOs in Android studio.

Is there a way to mark them 'complete' without simply deleting them?


Solution

  • The common convention is that when a TODO is done, then you delete it from the code.

    Same with FIXME or STOPSHIP. (STOPSHIP might get picked up by CI servers and sets the build to failed until the comment is removed).

    If you want to track progress of completed items, you have other tools available:

    • Use a ticket system like Redmine
    • Use a version control system like GIT and submit one commit per fix
    • Use a naming scheme (We use // <shortname>/<date>: Fixes #<number of bug)