renamed package
This commit is contained in:
17
src/com/oracle/associate/java8/test/Tree.java
Normal file
17
src/com/oracle/associate/java8/test/Tree.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user