I was studying Android's FileProvider
API and noticed that while method getUriForFile is static, it is not declared as static
in the documentation:
Uri getUriForFile (Context context,
String authority,
File file)
What am I missing? Why isn't it declared as:
public static Uri getUriForFile (Context context,
String authority,
File file)
Note: It is declared as static
in methods summary, but not in the full description section.