close the private key file after reading it. patch by Wolfgang Nagele

git-svn-id: https://svn.verisignlabs.com/jdnssec/tools/trunk@111 4cbd57fe-54e5-0310-bd9a-f30fe5ea5e6e
This commit is contained in:
David Blacka 2009-02-01 18:24:30 +00:00
parent 19efd1ceb8
commit 5170a087c9
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@ public class BINDKeyUtils
key_buf.append(line);
key_buf.append('\n');
}
in.close();
return key_buf.toString().trim();
}