jdk/make/src/classes/build/tools/dtdbuilder/DTDParser.java
changeset 36110 91a3a6df36ec
parent 34885 63d4a8c733f8
--- a/jdk/make/src/classes/build/tools/dtdbuilder/DTDParser.java	Wed Jul 05 21:22:47 2017 +0200
+++ b/jdk/make/src/classes/build/tools/dtdbuilder/DTDParser.java	Mon Feb 22 11:23:03 2016 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -908,16 +908,12 @@
             this.dtd = dtd;
             this.in = new DTDInputStream(in, dtd);
 
-            long tm = System.currentTimeMillis();
             ch = this.in.read();
             parseSection();
 
             if (ch != -1) {
                 error("premature");
             }
-
-            tm = System.currentTimeMillis() - tm;
-            System.err.println("[Parsed DTD " + dtd + " in " + tm + "ms]");
         } catch (IOException e) {
             error("ioexception");
         } catch (Exception e) {