This repository was archived by the owner on Apr 9, 2019. It is now read-only.

Description
- OS, Version, Architecture (e.g. Windows 8.1 x64): Linux mint 18.3 x64 / Ubuntu 16.04 x64
- JRE Vendor, Version (e.g. Oracle JDK 8u151): openjdk 1.8.0_181
Expected behaviour
Running app should use less than 32mb RAM.
Actual behaviour
Running app eats about 400mb RAM.
Steps to reproduce the issue
Create new project with one Main.java class with following code:
package fr.delthas.skype;
public class Main {
public static void main(String[] args) throws Exception {
Skype skype = new Skype("username", "password");
skype.connect();
System.out.println("Done");
}
}
Run project and see memory usage using system monitor.
For example, I cannot even run this app on my VDS because of Exception in thread "main" java.lang.OutOfMemoryError: Java heap space