Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Antti Väyrynen
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 405f4311
authored
Oct 27, 2012
by
Tuomas Riihimäki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG
1 parent
99d9a3b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
code/LanBortalBeans/ejbModule/fi/insomnia/bortal/beans/AccountEventBean.java
code/LanBortalBeans/ejbModule/fi/insomnia/bortal/beans/AccountEventBean.java
View file @
405f431
...
@@ -131,12 +131,13 @@ public class AccountEventBean implements AccountEventBeanLocal {
...
@@ -131,12 +131,13 @@ public class AccountEventBean implements AccountEventBeanLocal {
@Override
@Override
public
AccountEvent
markDelivered
(
AccountEvent
e
,
Calendar
c
)
{
public
AccountEvent
markDelivered
(
AccountEvent
e
,
Calendar
c
)
{
accountfacade
.
reload
(
e
);
e
=
accountfacade
.
reload
(
e
);
if
(
e
.
getDelivered
()
!=
null
)
if
(
e
.
getDelivered
()
!=
null
)
{
{
throw
new
EJBException
(
"AccountEvent "
+
e
+
" already marked paid!"
);
throw
new
EJBException
(
"AccountEvent "
+
e
+
" already marked paid!"
);
}
}
e
.
setDelivered
(
c
);
e
.
setDelivered
(
c
);
return
e
;
return
e
;
}
}
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment