#!/bin/ksh
#
#This script unsets symbolic links to third party java classes and the jre
#set by the set_sym_links script
#
# This script must be in the top doc directory

PRG=`whence $0` >/dev/null 2>&1
THIS_DIR=`dirname $PRG`

link=$THIS_DIR/jre
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/IE
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/org
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/swingall.jar
if [ -L "$link" ] ; then rm $link ; fi

#
# added the following two removes in support of 
# Clean Submission project. 04/23/99
#
link=$THIS_DIR/java_class/activation.jar
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/mail.jar
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/com
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/file_sel.zip
if [ -L "$link" ] ; then rm $link ; fi

link=$THIS_DIR/java_class/doc/CORBA
if [ -L "$link" ] ; then rm $link ; fi
