File tree 1 file changed +3
-3
lines changed
mvp-nullobject-presenter/src/main/java/com/hannesdorfmann/mosby3/mvp
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
import java .lang .reflect .Type ;
8
8
9
9
/**
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
11
11
* object pattern</a> for the attached mvp view. So whenever the view gets detached from this
12
12
* presenter by calling{@link #detachView(boolean)}, a new "null object" view gets dynamically
13
13
* instantiated by using reflections and set as the current
@@ -62,7 +62,7 @@ public MvpNullObjectBasePresenter() {
62
62
}
63
63
}
64
64
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)
66
66
currentClass = currentClass .getSuperclass ();
67
67
}
68
68
@@ -77,7 +77,7 @@ public MvpNullObjectBasePresenter() {
77
77
}
78
78
79
79
/**
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
81
81
*
82
82
* @param klass The leaf interface where to begin to scan
83
83
* @return true if subtype of MvpView, otherwise false
You can’t perform that action at this time.
0 commit comments