In this java code that some one else has written, people have used null check condition as null!=abc or null==abc, but I need to change it to abc!=null and abc==null respectively.
Someone told me that this can be done using regular expressions very easily, as till now I was performing a manual task, but searching it and then replacing it manually.
null==abctoabc=null? Those have two different meanings (hint hint, one is assignment)