Unnecessary keywords in response code generated by Aria
-
riteshrhkr last edited by
When ever I request for a code or correct my code then it add unnecessary tags in java code like
@Bean public <link>SecurityFilterChain</link> securityFilterChain(HttpSecurity http) throws Exception { http.csrf().disable() .<link>authorizeRequests</link>(authorize -> authorize .<link>antMatchers</link>("/user/**").hasRole("USER") .<link>antMatchers</link>("/admin/**").hasRole("ADMIN") .<link>antMatchers</link>("/").permitAll() .anyRequest().authenticated() ) .<link>formLogin</link>(); return http.build(); }
Language - Java
I don't know if other languages have same issue -
leocg