9 lines
151 B
Java
9 lines
151 B
Java
public class Confidential {
|
|
|
|
private String secret = "";
|
|
|
|
public Confidential(String text) {
|
|
this.secret = text.toUpperCase();
|
|
}
|
|
}
|