generate by template: do not delete parts of method signature (IDEA-157445)

This commit is contained in:
Anna Kozlova
2016-06-15 12:59:57 +03:00
parent ed22cab8b3
commit fc4bbbde7c
6 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
class Test {
@NotNull
public String toString() {
return null;
}
}

View File

@@ -0,0 +1,8 @@
class Test {
/**
* my comment
*/
public String toString() {
return null;
}
}

View File

@@ -0,0 +1,3 @@
class Test {
<caret>
}

View File

@@ -0,0 +1,3 @@
class Test {
<caret>
}