%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/bin/sh set -e basedir=/usr/lib/jvm/java-11-openjdk-amd64 jre_tools='java jjs keytool rmid rmiregistry pack200 unpack200' if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then for i in $jre_tools; do update-alternatives --remove $i $basedir/bin/$i done if which update-binfmts >/dev/null; then # try to remove and ignore the error if [ -e /var/lib/binfmts/openjdk-11 ]; then update-binfmts --package openjdk-11 \ --remove jar /usr/bin/jexec || true fi fi update-alternatives --remove jexec $basedir/lib/jexec rm -f $basedir/lib/*/classes.jsa fi