Sign in
apache
/
tapestry-5
/
refs/heads/beanmodel-split
/
.
/
plastic
/
src
/
test
/
java
/
testsubjects
/
Memory.java
blob: 8e440b76ea3bb66c424df66ebb9818b99df09749 [
file
]
package
testsubjects
;
public
class
Memory
{
long
value
=
0
;
public
long
returnLast
(
long
next
)
{
long
result
=
value
;
value
=
next
;
return
result
;
}
}