move postfix templates to java-impl

This commit is contained in:
Sergey Ignatov
2013-12-19 12:35:51 +04:00
parent 8286229281
commit dce2c1739c
284 changed files with 284 additions and 241 deletions
@@ -0,0 +1,11 @@
package templates;
public class Foo {
void m() {
bar().assert<caret>
}
boolean bar() {
return true;
}
}