libgit2 / objective-git

Objective-C bindings to libgit2
MIT License
1.16k stars 280 forks source link

Removed `InfoPlist.strings` from disk, deleted `English.lproj` folder. #706

Closed wilshipley closed 4 years ago

wilshipley commented 4 years ago

InfoPlist.strings was empty, so it wasn’t doing anything. Further, it didn’t really have anything it COULD do — there are no user-facing strings in the Info.plist of a framework.

In modern Xcodes (eg, 11+) English.lproj has been deprecated (for en.lproj or even Base.lproj now) so just having this useless strings file was causing a warning to show during builds.

Not a big deal, but I figure this simplifies the code base so why not pull it back.

Yours, -Wil Shipley