Skip to content

Commit

Permalink
make service private
Browse files Browse the repository at this point in the history
  • Loading branch information
cremertim committed Nov 29, 2024
1 parent 59294fd commit e739f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/app/faq/faq.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Faq } from 'app/entities/faq.model';

@Injectable({ providedIn: 'root' })
export class FaqResolve implements Resolve<Faq> {
protected faqService = inject(FaqService);
private faqService = inject(FaqService);

resolve(route: ActivatedRouteSnapshot): Observable<Faq> {
const faqId = route.params['faqId'];
Expand Down

0 comments on commit e739f40

Please sign in to comment.