updated Java/Jython private field examples

This commit is contained in:
Luciano Ramalho
2014-10-19 15:41:11 -02:00
parent 1d48cdbde5
commit 9da839023e
8 changed files with 26 additions and 18 deletions

View File

@@ -4,6 +4,6 @@ public class Confidential {
private String hidden = "burn after reading";
public Confidential(String text) {
this.secret = text;
this.secret = text.toUpperCase();
}
}