src/java.desktop/share/classes/com/sun/media/sound/PortMixerProvider.java
changeset 54860 1372fbbde8dd
parent 47216 71c04702a3d5
--- a/src/java.desktop/share/classes/com/sun/media/sound/PortMixerProvider.java	Thu Apr 25 15:19:09 2019 +0530
+++ b/src/java.desktop/share/classes/com/sun/media/sound/PortMixerProvider.java	Thu Apr 25 15:13:36 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, 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
@@ -69,7 +69,6 @@
         int numDevices = nGetNumDevices();
 
         if (infos == null || infos.length != numDevices) {
-            if (Printer.trace) Printer.trace("PortMixerProvider: init()");
             // initialize the arrays
             infos = new PortMixerInfo[numDevices];
             devices = new PortMixer[numDevices];
@@ -79,7 +78,6 @@
             for (int i = 0; i < infos.length; i++) {
                 infos[i] = nNewPortMixerInfo(i);
             }
-            if (Printer.trace) Printer.trace("PortMixerProvider: init(): found numDevices: " + numDevices);
         }
     }