Skip to content

Commit

Permalink
Added a trailing space to java snippets that will be followed by
Browse files Browse the repository at this point in the history
a space.
  • Loading branch information
cinocode committed Jun 9, 2014
1 parent 0ec9a04 commit e5293e3
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions snippets/java.snippets
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Access Modifiers
snippet po
protected
protected ${0}
snippet pu
public
public ${0}
snippet pr
private
private ${0}
##
## Annotations
snippet before
Expand All @@ -25,7 +25,7 @@ snippet oo
##
## Basic Java packages and import
snippet im
import
import ${0}
snippet j.b
java.beans.
snippet j.i
Expand All @@ -47,9 +47,9 @@ snippet tc
##
## Class Enhancements
snippet ext
extends
extends ${0}
snippet imp
implements
implements ${0}
##
## Comments
snippet /*
Expand Down Expand Up @@ -91,13 +91,13 @@ snippet v
##
## Enhancements to Methods, variables, classes, etc.
snippet ab
abstract
abstract ${0}
snippet fi
final
final ${0}
snippet st
static
static ${0}
snippet sy
synchronized
synchronized ${0}
##
## Error Methods
snippet err
Expand All @@ -113,9 +113,9 @@ snippet as
snippet ca
catch(${1:Exception} ${2:e}) ${0}
snippet thr
throw
throw ${0}
snippet ths
throws
throws ${0}
snippet try
try {
${0}
Expand Down Expand Up @@ -206,7 +206,7 @@ snippet get
##
## Terminate Methods or Loops
snippet re
return
return ${0}
snippet br
break;
##
Expand Down

0 comments on commit e5293e3

Please sign in to comment.