Commit 9f549bfa3766899429a646729c5ef6a9be66c9e2

Authored by Emerson Oliveira
1 parent 98ed600d
Exists in master

Ajuste na formatação

impl/core/src/test/java/management/testclasses/RequestScopedClass.java
@@ -4,19 +4,15 @@ import javax.enterprise.context.RequestScoped; @@ -4,19 +4,15 @@ import javax.enterprise.context.RequestScoped;
4 4
5 @RequestScoped 5 @RequestScoped
6 public class RequestScopedClass { 6 public class RequestScopedClass {
7 - 7 +
8 private String info = ""; 8 private String info = "";
9 9
10 -  
11 public String getInfo() { 10 public String getInfo() {
12 return info; 11 return info;
13 } 12 }
14 13
15 -  
16 public void setInfo(String info) { 14 public void setInfo(String info) {
17 this.info = info; 15 this.info = info;
18 } 16 }
19 -  
20 -  
21 17
22 } 18 }