Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
resources-en
/
src
/
intentionDescriptions
/
EditContractIntention
/
after.java.template
blob: 0714ecfe997afa07bd35ff4c7a7a11ea9d8775c4 [
file
] [
log
] [
blame
]
import
org
.
jetbrains
.
annotations
.
Contract
;
class
A
{
<spot>
@Contract
(
"any->null"
)</
spot
>
Object
getObject
()
{
//do smth
return
null
;
}
}