Browse Source

Fetchable simplification

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac408@3798 e5f2f494-b856-4b98-b285-d166d9295462
Michal Vaner 14 years ago
parent
commit
b3634f7c0e
1 changed files with 1 additions and 5 deletions
  1. 1 5
      src/lib/nsas/fetchable.h

+ 1 - 5
src/lib/nsas/fetchable.h

@@ -48,12 +48,8 @@ class Fetchable {
         };
         /// \short Constructors
         //@{
-        /// This creates the Fetchable object in NOT_ASKED state.
-        Fetchable() :
-            state_(NOT_ASKED)
-        { }
         /// This creates the Fetchable object in the given state.
-        Fetchable(State state) :
+        Fetchable(State state = NOT_ASKED) :
             state_(state)
         { }
         //@}