Jumped the Wall After All, 38/100 Days of Code
I found the solution to the error in my code. Sadly, it wasn’t as advanced as I’d hoped.
A typo. I got tripped up over a typo.
I wrote a method which accepted a View object called view. However, when I tried to use this object later in the function, I accidentally typed View with a capital “V”, which confused the Java compiler. After making the change view with a lowercase “v”, the code compiled with no problem.
The moral of the story is, even the best of us fall victim to ambitious typing errors. Watch the results of my fix below.
-CF