Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Issue 5802004: Fix 'else' style nit. (Closed)

Created:
10 years ago by wtc
Modified:
9 years, 7 months ago
Reviewers:
Mike Belshe, mbelshe
CC:
chromium-reviews, cbentzel+watch_chromium.org, darin-cc_chromium.org
Visibility:
Public.

Description

Fix 'else' style nit. R=mbelshe BUG=none TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=69339

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1 line, -3 lines) Patch
M net/spdy/spdy_session.cc View 1 chunk +1 line, -3 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
wtc
10 years ago (2010-12-14 19:21:05 UTC) #1
mbelshe
10 years ago (2010-12-14 19:37:57 UTC) #2
lgtm

On Tue, Dec 14, 2010 at 11:21 AM, <wtc@chromium.org> wrote:

> Reviewers: Mike Belshe,
>
> Description:
> Fix 'else' style nit.
>
> R=mbelshe
> BUG=none
> TEST=none
>
> Please review this at http://codereview.chromium.org/5802004/
>
> SVN Base: svn://svn.chromium.org/chrome/trunk/src/
>
> Affected files:
>  M     net/spdy/spdy_session.cc
>
>
> Index: net/spdy/spdy_session.cc
> ===================================================================
> --- net/spdy/spdy_session.cc    (revision 68922)
> +++ net/spdy/spdy_session.cc    (working copy)
> @@ -937,9 +937,7 @@
>     used_push_streams.Increment();
>     return stream;
>   }
> -  else {
> -    return NULL;
> -  }
> +  return NULL;
>  }
>
>  bool SpdySession::GetSSLInfo(SSLInfo* ssl_info, bool* was_npn_negotiated)
> {
>
>
>

Powered by Google App Engine
This is Rietveld 408576698