Skip to content

Commit

Permalink
Merge pull request #128 from lanjerry/develop
Browse files Browse the repository at this point in the history
去掉controller模板中多余的空白行.
  • Loading branch information
qmdx authored Oct 11, 2021
2 parents 3ba31cd + 9a97581 commit be8adb0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package ${package.Controller};


import org.springframework.web.bind.annotation.RequestMapping;

<% if(restControllerStyle){ %>
import org.springframework.web.bind.annotation.RestController;
<% }else{ %>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package ${package.Controller};


import org.springframework.web.bind.annotation.RequestMapping;

<#if restControllerStyle>
import org.springframework.web.bind.annotation.RestController;
<#else>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package ${package.Controller};


import org.springframework.web.bind.annotation.RequestMapping;

#if(${restControllerStyle})
import org.springframework.web.bind.annotation.RestController;
#else
Expand Down Expand Up @@ -37,5 +35,4 @@ public class ${table.controllerName} {
#end

}

#end
#end

0 comments on commit be8adb0

Please sign in to comment.