Skip to content

Commit 5f3b504

Browse files
committed
Merge branch 'master' of https://github.com/sockeqwe/mosby
2 parents eb2f990 + 11bf347 commit 5f3b504

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mvp-nullobject-presenter/src/main/java/com/hannesdorfmann/mosby3/mvp/MvpNullObjectBasePresenter.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import java.lang.reflect.Type;
88

99
/**
10-
* A {@link MvpPresenter} implmenetation that implements the <a href="https://en.wikipedia.org/wiki/Null_Object_pattern">null
10+
* A {@link MvpPresenter} implementation that implements the <a href="https://en.wikipedia.org/wiki/Null_Object_pattern">null
1111
* object pattern</a> for the attached mvp view. So whenever the view gets detached from this
1212
* presenter by calling{@link #detachView(boolean)}, a new "null object" view gets dynamically
1313
* instantiated by using reflections and set as the current
@@ -62,7 +62,7 @@ public MvpNullObjectBasePresenter() {
6262
}
6363
}
6464

65-
// Continue with next class in inheritance hierachy (see genericSuperType assignment at start of while loop)
65+
// Continue with next class in inheritance hierarchy (see genericSuperType assignment at start of while loop)
6666
currentClass = currentClass.getSuperclass();
6767
}
6868

@@ -77,7 +77,7 @@ public MvpNullObjectBasePresenter() {
7777
}
7878

7979
/**
80-
* Scans the interface inheritnace hierarchy and checks if on the root is MvpView.class
80+
* Scans the interface inheritance hierarchy and checks if on the root is MvpView.class
8181
*
8282
* @param klass The leaf interface where to begin to scan
8383
* @return true if subtype of MvpView, otherwise false

0 commit comments

Comments
 (0)