Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
samples
/
conditionalOperatorConvertor
/
testData
/
before.template.java
blob: 74107ea2d439beeed7372a4ee75b5fc5538ee0da [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(
boolean
isMale
)
{
String
title
=
isMale
<
caret
>?
"Mr."
:
"Ms."
;
System
.
out
.
println
(
"title = "
+
title
);
}
}