Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / OFPGetConfigRequest.java
diff --git a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/OFPGetConfigRequest.java b/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/OFPGetConfigRequest.java
deleted file mode 100644 (file)
index d35904d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package org.openflow.codec.protocol;
-
-import org.openflow.codec.util.U16;
-
-/**
- * Represents an OFPT_GET_CONFIG_REQUEST type message
- *
- * @author David Erickson (daviderickson@cs.stanford.edu)
- */
-public class OFPGetConfigRequest extends OFPMessage {
-    public OFPGetConfigRequest() {
-        super();
-        this.type = OFPType.GET_CONFIG_REQUEST;
-        this.length = U16.t(OFPMessage.MINIMUM_LENGTH);
-    }
-}