Skip to content

Commit

Permalink
fix public/private visibility of the miniAspectExample
Browse files Browse the repository at this point in the history
  • Loading branch information
dvojtise committed Aug 4, 2023
1 parent 851c138 commit 5a021e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import java.util.ArrayList
@Aspect(className=java.io.File)
class $aspectClassName$ {

var String contentType = ""
public var String contentType = ""

var ArrayList<String> contentArrayList = newArrayList("")
public var ArrayList<String> contentArrayList = newArrayList("")

public def void writeXML(){
def void writeXML(){
var PrintWriter writer = new PrintWriter(_self, "UTF-8");
// compute content String by using template
val content = '''<xml>
Expand Down

0 comments on commit 5a021e7

Please sign in to comment.