java - Avoiding unwanted whitespace in Eclipse code template -


i created following code template instance of google's userservice:

${:import(com.google.appengine.api.users.userservice, com.google.appengine.api.users.userservicefactory)} userservice usersvc = userservicefactory.getuserservice();${cursor} 

which results in code output this:

// blank line here (had show somehow) userservice usersvc = userservicefactory.getuserservice(); 

is there way avoid blank line before code insertion?

i know if write template on 1 line (which makes template unreadable) can avoid undesirable blank line — there better/more elegant solution?


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -