diff options
author | Simon Horman <horms@verge.net.au> | 2014-02-22 10:09:28 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-02-27 08:18:12 +0900 |
commit | 5800214d162b6df13d94978ebf6dacb93347cc66 (patch) | |
tree | 460e7a5b3b7f6dd1e80750b0eb90bbfbc8e0a723 | |
parent | 6dd0f6341477c33e66c2824210f3ba4ec55509e2 (diff) |
of14: Remove supruious comment from OFPPropBase
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/ofproto/ofproto_v1_4_parser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ryu/ofproto/ofproto_v1_4_parser.py b/ryu/ofproto/ofproto_v1_4_parser.py index 2209ff28..1a606784 100644 --- a/ryu/ofproto/ofproto_v1_4_parser.py +++ b/ryu/ofproto/ofproto_v1_4_parser.py @@ -776,7 +776,6 @@ class OFPPropBase(StringifyMixin): @classmethod def parse(cls, buf): (type_, length) = struct.unpack_from(cls._PACK_STR, buf, 0) - # needs rest = buf[utils.round_up(length, 8):] try: subcls = cls._TYPES[type_] |