Merge pull request #119 from troydm/master

java set snippet fixed
This commit is contained in:
Eustáquio Rangel 2012-07-20 06:00:36 -07:00
commit 5ab08ed775

View File

@ -196,7 +196,7 @@ snippet renx
## ##
## Setter and Getter Methods ## Setter and Getter Methods
snippet set snippet set
$1 void set$3($2 $4){ ${1:public} void set${3:}(${2:String} ${4:}){
this.$4 = $4; this.$4 = $4;
} }
snippet get snippet get