Index: /applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/PlayAudioAction.java
===================================================================
--- /applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/PlayAudioAction.java	(revision 30361)
+++ /applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/PlayAudioAction.java	(revision 30362)
@@ -48,7 +48,4 @@
                     AudioInputStream stream = AudioSystem.getAudioInputStream(in);
 
-                    // From URL
-//                  stream = AudioSystem.getAudioInputStream(new URL("http://hostname/audiofile"));
-
                     // At present, ALAW and ULAW encodings must be converted
                     // to PCM_SIGNED before it can be played
Index: /applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/util/ResourceLoader.java
===================================================================
--- /applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/util/ResourceLoader.java	(revision 30361)
+++ /applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/util/ResourceLoader.java	(revision 30362)
@@ -30,5 +30,5 @@
     public static InputStream getInputStream(String source) throws IOException {
         InputStream in = null;
-        if (source.startsWith("http://") || source.startsWith("ftp://") || source.startsWith("file:")) {
+        if (source.startsWith("http://") || source.startsWith("https://") || source.startsWith("ftp://") || source.startsWith("file:")) {
             in = new URL(source).openStream();
         } else if (source.startsWith("resource://")) {
@@ -40,4 +40,3 @@
         return in;
     }
-
 }
