Sign in
android
/
platform
/
external
/
javassist
/
HEAD
/
.
/
src
/
test
/
test2
/
AddMethod.java
blob: c04ff606a9cb1213e21fe67ab82eaa7d5e088139 [
file
] [
log
] [
blame
]
package
test2
;
public
class
AddMethod
{
@SuppressWarnings
(
"unused"
)
private
int
f
;
public
int
f
()
{
return
0
;
}
public
AddMethod
()
{}
public
int
f
(
int
i
)
{
return
i
;
}
}