From 7477eb97627986e759e28b9469dce9752166c303 Mon Sep 17 00:00:00 2001 From: deepurple <junyuanleng@gmail.com> Date: Fri, 27 Mar 2015 17:42:11 +0800 Subject: [PATCH] Correct the spelling error In line 329 of StaticFlowEntryPusherResource.java, the word "flow mod" is spelled as "flod mod". Just encountered that when using the rest api, so I fixed it. --- .../staticflowentry/web/StaticFlowEntryPusherResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/floodlightcontroller/staticflowentry/web/StaticFlowEntryPusherResource.java b/src/main/java/net/floodlightcontroller/staticflowentry/web/StaticFlowEntryPusherResource.java index f43773ba1..1f953b0e0 100644 --- a/src/main/java/net/floodlightcontroller/staticflowentry/web/StaticFlowEntryPusherResource.java +++ b/src/main/java/net/floodlightcontroller/staticflowentry/web/StaticFlowEntryPusherResource.java @@ -326,7 +326,7 @@ public class StaticFlowEntryPusherResource extends ServerResource { return ("{\"status\" : \"" + status + "\"}"); } catch (IOException e) { log.error("Error parsing push flow mod request: " + fmJson, e); - return "{\"status\" : \"Error! Could not parse flod mod, see log for details.\"}"; + return "{\"status\" : \"Error! Could not parse flow mod, see log for details.\"}"; } } -- GitLab