~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/user_locks/get_locks.cc

  • Committer: Brian Aker
  • Date: 2010-10-25 23:36:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1879.
  • Revision ID: brian@tangent.org-20101025233621-cyh9te7mijw0al2r
Additional dynamic_cast removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
  if (result)
57
57
  {
58
 
    user_locks::Storable *list= dynamic_cast<user_locks::Storable *>(getSession().getProperty("user_locks"));
 
58
    user_locks::Storable *list= static_cast<user_locks::Storable *>(getSession().getProperty("user_locks"));
59
59
    if (not list)
60
60
    {
61
61
      list= new user_locks::Storable(getSession().getSessionId());