Skip to content

Commit

Permalink
updating jar in order to not show warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
markoscalderon committed Feb 7, 2013
1 parent d1e8046 commit f9b2600
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Binary file modified bigbluebutton-client/resources/prod/bbb-deskshare-applet-0.8.1.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
*/
package org.bigbluebutton.deskshare.client;

import javax.imageio.ImageIO;
import javax.swing.JApplet;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

import java.io.IOException;
import java.net.URL;
import java.security.*;
import java.awt.Image;

Expand Down Expand Up @@ -73,7 +77,11 @@ public void init() {

String tunnel = getParameter("HTTP_TUNNEL");
if (tunnel != null) tunnelValue = Boolean.parseBoolean(tunnel);
icon = getImage(getCodeBase(), "bbb.gif");
try {
URL url = new URL(getCodeBase(), "bbb.gif");
icon = ImageIO.read(url);
} catch (IOException e) {
}
}

@Override
Expand Down

0 comments on commit f9b2600

Please sign in to comment.