Github: Nullable

This commit is contained in:
Aleksey Pivovarov
2013-09-10 17:06:26 +04:00
parent 403902b89a
commit 0c1a982e33
@@ -16,6 +16,7 @@
package org.jetbrains.plugins.github.api;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author Aleksey Pivovarov
@@ -45,7 +46,7 @@ public class GithubFullPath {
}
@Override
public boolean equals(Object o) {
public boolean equals(@Nullable Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;