I've been working on debugging some projects, and I have come across this code syntax multiple times the fast few days. I've never seen this before and searches have not helped. What does this code do?
public class SomeClass{
    // Class member declarations...
    static{
        // Code / method calls. Basically looks like a method.
        // What is this?
    }
    // method declarations...
}
 
     
    