Skip to content

Conversation

@Govikk
Copy link

@Govikk Govikk commented Aug 11, 2018

Fix #74

Check whether project location is not null.

for (IProject project : projects) {
if (!resource.getLocation().equals(project.getLocation())
if (project.getLocation() != null
&&!resource.getLocation().equals(project.getLocation())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit - space

for (IProject project : projects) {
if (project.getLocation().isPrefixOf(location) && SVNWorkspaceRoot.isManagedBySubclipse(project)) {
if (SVNWorkspaceRoot.isManagedBySubclipse(project)
&&project.getLocation().isPrefixOf(location) ) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit - space

@selsemore selsemore merged commit 8617924 into subclipse:master Dec 20, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants