renamed package

This commit is contained in:
Fabio Scotto di Santolo
2018-08-10 11:45:21 +02:00
parent ad11fe5454
commit bd39872f60
48 changed files with 51 additions and 50 deletions

View File

@@ -0,0 +1,17 @@
package com.oracle.associate.java8.test;
public class Tree {
public final static long numberOfTrees;
public final double height;
static {}
{
final int initHeight = 2;
height = initHeight;
}
static {
numberOfTrees = 100;
//height = 4;
}
}