Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow registration of link handers handled by other application #137

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,12 @@ private String getPathToEclipseApp() {
/**
* Only one application can handle a specific uri scheme on macOS. This
* information is stored de-centrally in the Info.plist file and registered in a
* central launch database (e.g. via "lsregister"). Registering an uri scheme
* that is already handled by another application would also include changing
* the other application's Info.plist file - which can have unknown side
* effects.
* central launch database (e.g. via "lsregister").
*
* @return always <code>false</code>
* @return always <code>true</code>
*/
@Override
public boolean canOverwriteOtherApplicationsRegistration() {
return false;
return true;
}
}