TexMaker が古いファイルを呼び出しています

TexMaker が古いファイルを呼び出しています

参考文献リストを作成し、それを呼び出してReferences.bib、試しに 1 つの引用文を入れたところ、すべてうまくいきました。しかし、References.bib新しい引用文を表示するようにファイル内のテキストを変更し、古い引用文を削除しました。今、 を呼び出すとReferences.bib、その引用文に関連するテキストがないにもかかわらず、古い引用文が表示され、新しい引用文は表示されません。古い引用文をどこからともなく引き出しているようです。私のコードは次のとおりです。

\documentclass[a4paper, 12pt]{article}

\usepackage{amsthm}
\theoremstyle{definition}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{geometry}
\usepackage{apacite}
\usepackage[hyphens]{url}
\geometry{left=0.9in,right=0.9in,top=1in,bottom=1in}

\begin{document}
\title{Why are Hydrogen Cars Rarely Seen?}
\author{Thomas Breust - u7106139} 
\date{}
\maketitle
\addtolength{\baselineskip}{.15\baselineskip}   

blah blah blah 

\newpage
\bibliographystyle{apacite}
\bibliography{References.bib}
\end{document}

ファイルのコードReferences.bib

@article{dowling_2019,
    title={Hyundai Nexo: first hydrogen car certified for Australia, now for the refuelling stations},
    url={https://www.caradvice.com.au/805257/hyundai-nexo-certified-australia/},                    journal={caradvice},
    author={Dowling, Joshua}, 
    year={2019}, 
    month={Nov}
    
}

参考文献リストの出力は次のようになります。

Thomas, CE (2010年7月)。水素燃料電池電気自動車と代替品との比較。AZO Cleantech。https://www.azocleantech.com/記事.aspx?記事ID=214

明らかに、それは私のファイルに書かれている引用ではありませんReferences.bib。この問題を解決する方法を誰か知っていますか? ありがとうございます

関連情報