Skip to content

Commit 2712bc3

Browse files
scientificwarejaikiran
authored andcommittedAug 9, 2022
8289741: Remove unused imports from DTDBuilder.java
Reviewed-by: jpai
1 parent af243ca commit 2712bc3

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed
 

‎make/jdk/src/classes/build/tools/dtdbuilder/DTDBuilder.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,9 @@
3030
import java.io.File;
3131
import java.io.FileInputStream;
3232
import java.io.IOException;
33-
import java.io.FileNotFoundException;
34-
import java.io.BufferedInputStream;
35-
import java.io.OutputStream;
3633
import java.util.Hashtable;
3734
import java.util.Vector;
38-
import java.util.BitSet;
39-
import java.util.StringTokenizer;
4035
import java.util.Enumeration;
41-
import java.util.Properties;
42-
import java.util.zip.DeflaterOutputStream;
43-
import java.util.zip.Deflater;
44-
import java.net.URL;
4536

4637
/**
4738
* The representation of an SGML DTD. This is produced by the DTDParser.
@@ -58,8 +49,7 @@
5849
* @author Arthur van Hoff
5950
* @author Guy Abossolo Foh
6051
*/
61-
public
62-
class DTDBuilder extends DTD {
52+
public class DTDBuilder extends DTD {
6353

6454
static PublicMapping mapping = null;
6555

0 commit comments

Comments
 (0)
Please sign in to comment.