]> granicus.if.org Git - graphviz/commitdiff
remove unused smyrna file
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 14 Feb 2021 18:31:14 +0000 (10:31 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 20 Feb 2021 23:51:09 +0000 (15:51 -0800)
cmd/smyrna/topviewdata.c [deleted file]

diff --git a/cmd/smyrna/topviewdata.c b/cmd/smyrna/topviewdata.c
deleted file mode 100644 (file)
index 31b27cc..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/* vim:set shiftwidth=4 ts=8: */
-
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: Details at https://graphviz.org
- *************************************************************************/
-
-#include "topviewdata.h"
-#include "btree.h"
-#include <glcomp/glcomppanel.h>
-#include <glcomp/glcompbutton.h>
-
-#include <common/memory.h>
-
-static int validate_group_node(tv_node * TV_Node, char *regex_string)
-{
-    btree_node *n = 0;
-//              n=tree_from_filter_string("([IP=\"^10.*\",min=\"0\",max=\"0\"])");
-    int valid = 0;
-    n = tree_from_filter_string(regex_string);
-    valid = evaluate_expresions(TV_Node, n);
-//      delete_node(n); 
-    return valid;
-}
-