mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-17 21:48:12 +00:00
spelling: constructors
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
680aa2e137
commit
5f12634dd1
@@ -280,7 +280,7 @@ public class ReflectCompletionDialog
|
||||
if (aClass != null) {
|
||||
// for now, add everything:
|
||||
theClass = aClass;
|
||||
ReflectUtils.addConstrcutors(aClass, items);
|
||||
ReflectUtils.addConstructors(aClass, items);
|
||||
ReflectUtils.addMethods(aClass, items);
|
||||
ReflectUtils.addFields(aClass, items);
|
||||
ActionUtils.insertIntoCombo(jCmbClassName, className);
|
||||
|
||||
@@ -101,7 +101,7 @@ public class ReflectUtils {
|
||||
* @param list
|
||||
* @return number of constructors added
|
||||
*/
|
||||
public static int addConstrcutors(Class aClass, List<Member> list) {
|
||||
public static int addConstructors(Class aClass, List<Member> list) {
|
||||
Constructor[] constructors = aClass.getConstructors();
|
||||
for (Constructor c : constructors) {
|
||||
list.add(c);
|
||||
|
||||
Reference in New Issue
Block a user