See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| public class HelloJNI { | |
| static { | |
| System.loadLibrary("hello"); // loads libhello.so | |
| } | |
| private native void sayHello(String name); | |
| public static void main(String[] args) { | |
| new HelloJNI().sayHello("Dave"); | |
| } |