Imported Upstream version 1.2.4
[platform/upstream/json-glib.git] / json-glib / json-scanner.c
index daf9ead..0c9919f 100644 (file)
@@ -130,25 +130,6 @@ static JsonScannerConfig json_scanner_config_template =
 
 #define        READ_BUFFER_SIZE        (4000)
 
-static const gchar json_symbol_names[] =
-  "true\0"
-  "false\0"
-  "null\0"
-  "var\0";
-
-static const struct
-{
-  guint name_offset;
-  guint token;
-} json_symbols[] = {
-  {  0, JSON_TOKEN_TRUE },
-  {  5, JSON_TOKEN_FALSE },
-  { 11, JSON_TOKEN_NULL },
-  { 16, JSON_TOKEN_VAR }
-};
-
-static const guint n_json_symbols = G_N_ELEMENTS (json_symbols);
-
 /* --- typedefs --- */
 typedef        struct  _JsonScannerKey JsonScannerKey;