1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Merge pull request #2526 from adambard/rename-duplicate-var

Rename duplicate fooInt int declaration
This commit is contained in:
Andrew Gallasch
2016-10-27 23:23:57 +10:30
committed by GitHub

View File

@@ -102,7 +102,7 @@ public class LearnJava {
// Integer - 32-bit signed two's complement integer
// (-2,147,483,648 <= int <= 2,147,483,647)
int fooInt = 1;
int bazInt = 1;
// Long - 64-bit signed two's complement integer
// (-9,223,372,036,854,775,808 <= long <= 9,223,372,036,854,775,807)