From 7f435bd3df4a719ec3feb492e2fa743ed4ecd04b Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Thu, 25 Jun 2020 01:57:04 -0400 Subject: [PATCH] Remove obsolete Google API key reference (#2809) This key was used for the Freebase APIs and is no longer referenced anywhere. --- refine | 7 ------- 1 file changed, 7 deletions(-) diff --git a/refine b/refine index df4a3a884..8a4f4fe31 100755 --- a/refine +++ b/refine @@ -47,8 +47,6 @@ where [options] include: default: 1024M Values less than 256M not allowed - -k a server API key for calling Google APIs - -v verbosity level [from low to high: error,warn,info,debug,trace] default: info @@ -572,10 +570,6 @@ run() { add_option "-Drefine.host=$REFINE_HOST" fi - if [ "$REFINE_GOOGLE_API_KEY" ] ; then - add_option "-Drefine.google_api_key=$REFINE_GOOGLE_API_KEY" - fi - if [ "$REFINE_AUTOSAVE_PERIOD" ] ; then add_option "-Drefine.autosave=$REFINE_AUTOSAVE_PERIOD" fi @@ -815,7 +809,6 @@ while [ $# -ne 0 ] ; do shift; continue; fi;; - -k) shift; REFINE_GOOGLE_API_KEY="$1"; shift; continue;; -v) shift; REFINE_VERBOSITY="$1"; shift; continue;; -x) shift; REFINE_EXTRA_OPTS="$1"; shift; continue;; --debug) shift; add_option '-Xdebug' '-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n'; continue;;