Fix j2k testdata for constructors

This commit is contained in:
Natalia Selezneva
2018-10-24 23:32:24 +03:00
parent 5bc2178040
commit ed1452c136
3 changed files with 3 additions and 3 deletions
@@ -45,5 +45,5 @@ class CtorComment2 {
* The magic of comments
*/
// single line magic comments
public CtorComment() {}
public CtorComment2() {}
}
@@ -14,5 +14,5 @@ class CtorComment2 {
/**
* This constructor is especially useful
*/
public CtorComment() {}
public CtorComment2() {}
}
@@ -1,7 +1,7 @@
package test;
public class BaseProtectedConstructor {
protected BaseSamePackage() {
protected BaseProtectedConstructor() {
}
}