Question

Do I get a No Override warning when overriding views in the core layer, what does this mean?

  • 16 June 2023
  • 1 reply
  • 31 views

Userlevel 2
Badge +8

Do I get a No Override warning when overriding views in the core layer, what does this mean?

Is it okay to override?

 


1 reply

Userlevel 5
Badge +13

Hi @NECMIOH 

 

You get this warning because, “@Override” annotation does not required in this place. Ideally can use the override annotation only if “”Person_Info_All “ method exist in Base view, then only it makes sense and override the method in CORE layer. This warns you about an unnecessary annotation. 

Just remove the annotation and it will work. 

/Harshini

Reply