View Javadoc
1   /*
2   TodoComment
3   
4   */
5   
6   package com.puppycrawl.tools.checkstyle.checks.todocomment;
7   
8   public class InputTodoCommentDefault {
9       int i;
10      public void method() { // violation below 'Comment matches .*'
11          i++; // TODO: do differently in future
12          i++;
13      }
14  
15  }