mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-06 06:47:54 +02:00
Remove duplicate int declarations (#2521)
Duplicate declarations break the build
This commit is contained in:
@@ -83,11 +83,11 @@ public class LearnJava {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Initialize a variable using <type> <name> = <val>
|
// Initialize a variable using <type> <name> = <val>
|
||||||
int fooInt = 1;
|
int barInt = 1;
|
||||||
// Initialize multiple variables of same type with same
|
// Initialize multiple variables of same type with same
|
||||||
// value <type> <name1>, <name2>, <name3> = <val>
|
// value <type> <name1>, <name2>, <name3> = <val>
|
||||||
int fooInt1, fooInt2, fooInt3;
|
int barInt1, barInt2, barInt3;
|
||||||
fooInt1 = fooInt2 = fooInt3 = 1;
|
barInt1 = barInt2 = barInt3 = 1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Variable types
|
* Variable types
|
||||||
|
Reference in New Issue
Block a user