Skip to main content
Question

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

  • June 16, 2023
  • 1 reply
  • 68 views

Forum|alt.badge.img+8
  • Sidekick (Partner)
  • 33 replies

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

hamalk
Superhero (Employee)
Forum|alt.badge.img+13
  • Superhero (Employee)
  • 246 replies
  • June 19, 2023

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