Browse Source

[2138] editorial fix: combine two short lines

JINMEI Tatuya 12 years ago
parent
commit
b34e331346
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/bin/auth/command.cc

+ 1 - 2
src/bin/auth/command.cc

@@ -146,8 +146,7 @@ public:
 // Handle the "getstats" command.  The argument is a list.
 // Handle the "getstats" command.  The argument is a list.
 class GetStatsCommand : public AuthCommand {
 class GetStatsCommand : public AuthCommand {
 public:
 public:
-    virtual ConstElementPtr exec(AuthSrv& server,
-                                 isc::data::ConstElementPtr) {
+    virtual ConstElementPtr exec(AuthSrv& server, isc::data::ConstElementPtr) {
         return (createAnswer(0, server.getStatistics()));
         return (createAnswer(0, server.getStatistics()));
     }
     }
 };
 };