BaseRawDataHandler is not generic (anymore or was never)
authorRoland Häder <roland@mxchange.org>
Fri, 19 May 2017 19:01:12 +0000 (21:01 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 19 May 2017 19:01:12 +0000 (21:01 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/class_BaseFrameworkSystem.php

index 085249c8ccb8b2386a0b0a65df226cacea9d6752..41e3a23347f6bfd73a062d244ffaa917a1685bbf 100644 (file)
@@ -2579,20 +2579,6 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                return $ret;
        }
 
-       /**
-        * Checks whether start/end marker are set
-        *
-        * @param       $data   Data to be checked
-        * @return      $isset  Whether start/end marker are set
-        */
-       public final function ifStartEndMarkersSet ($data) {
-               // Determine it
-               $isset = ((substr($data, 0, strlen(BaseRawDataHandler::STREAM_START_MARKER)) == BaseRawDataHandler::STREAM_START_MARKER) && (substr($data, -1 * strlen(BaseRawDataHandler::STREAM_END_MARKER), strlen(BaseRawDataHandler::STREAM_END_MARKER)) == BaseRawDataHandler::STREAM_END_MARKER));
-
-               // ... and return it
-               return $isset;
-       }
-
        /**
         * Determines if an element is set in the generic array
         *