Create From Usage: Remove "from usage" words from action text

This commit is contained in:
Alexey Sedunov
2014-10-29 16:49:24 +03:00
parent d343bb4dc3
commit 42a74f55da
253 changed files with 254 additions and 254 deletions
@@ -1,4 +1,4 @@
// "Create function 'iterator' from usage" "true"
// "Create function 'iterator'" "true"
class Foo<T> {
fun iterator(): Iterator<T> {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
@@ -1,4 +1,4 @@
// "Create function 'iterator' from usage" "true"
// "Create function 'iterator'" "true"
class Foo<T> {
fun iterator(): Iterator<String> {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
@@ -1,4 +1,4 @@
// "Create function 'next' from usage" "true"
// "Create function 'next'" "true"
class FooIterator<T> {
fun hasNext(): Boolean { return false }
@@ -1,4 +1,4 @@
// "Create function 'iterator' from usage" "true"
// "Create function 'iterator'" "true"
class Foo<T>
fun foo() {
for (i: Int in Foo<caret><Int>()) { }
@@ -1,4 +1,4 @@
// "Create function 'iterator' from usage" "true"
// "Create function 'iterator'" "true"
class Foo<T>
fun foo() {
for (i in Foo<caret><Int>()) {
@@ -1,4 +1,4 @@
// "Create function 'next' from usage" "true"
// "Create function 'next'" "true"
class FooIterator<T> {
fun hasNext(): Boolean { return false }
}