java - Variables not getting read -
i'm working existing httpservletrequest
application retrieves records various databases. i'm using eclipse ide.
the app works fine , want extend functionality. when try add own variables & methods servlet, i'm noticing debugger skips right on them , acts if commented out.
boolean checkname = false, checkaddress = false, checkage = false; //all existing variables read fine boolean checkcompany = false; //my own variable doesn't read @
i've saved, refreshed, committed svn repository, code getting skipped over.
edit: i've noticed if strip away existing code, code still gets read. seems .java file isn't syncing reason.
any ideas of cause this?
cleaning , building project solved issue. used refreshing entire project because changes ui update, not case source files. high-level answer, of course.
Comments
Post a Comment