File tree Expand file tree Collapse file tree 6 files changed +48
-1
lines changed
main/java/com/baeldung/inlining
test/java/com/baeldung/inlining Expand file tree Collapse file tree 6 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1+ =========
2+
3+ ## Core Java JVM Cookbooks and Examples
4+
5+ ### Relevant Articles:
6+ - [ Method Inlining in the JVM] ( http://www.baeldung.com/method-inlining-in-the-jvm/ )
Original file line number Diff line number Diff line change 1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >com.baeldung</groupId >
5+ <artifactId >core-java-jvm</artifactId >
6+ <version >0.1.0-SNAPSHOT</version >
7+ <packaging >jar</packaging >
8+ <name >core-java-jvm</name >
9+
10+ <parent >
11+ <groupId >com.baeldung</groupId >
12+ <artifactId >parent-modules</artifactId >
13+ <version >1.0.0-SNAPSHOT</version >
14+ </parent >
15+
16+ <dependencies >
17+ <dependency >
18+ <groupId >junit</groupId >
19+ <artifactId >junit</artifactId >
20+ <version >${junit.version} </version >
21+ <scope >test</scope >
22+ </dependency >
23+ <dependency >
24+ <groupId >org.apache.commons</groupId >
25+ <artifactId >commons-lang3</artifactId >
26+ <version >${commons-lang3.version} </version >
27+ </dependency >
28+ <dependency >
29+ <groupId >org.assertj</groupId >
30+ <artifactId >assertj-core</artifactId >
31+ <version >${assertj.version} </version >
32+ <scope >test</scope >
33+ </dependency >
34+ </dependencies >
35+
36+ <properties >
37+ <commons-lang3 .version>3.5</commons-lang3 .version>
38+ <assertj .version>3.6.1</assertj .version>
39+ </properties >
40+ </project >
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 393393 <module >core-java-networking</module >
394394 <module >core-java-perf</module >
395395 <module >core-java-sun</module >
396- <module >core-java</module >
396+ <module >core-java</module >
397+ <module >core-java-jvm</module >
397398 <module >core-scala</module >
398399 <module >couchbase</module >
399400 <module >custom-pmd</module >
You can’t perform that action at this time.
0 commit comments