我正在为一艘游艇建造一座fix。 但有渔获。 我没有作 mo,因此,我不得不comp倒。
为了缩短篇幅,这是我第一次努力寻找出的、非致命的来源。
我仅是“gonna edit ONE”案(大约1.5K)。
它不折不扣的罚款,一经编辑,但现在可以编集。 我正在使用“阶级变量”将其指向“jar”,因此,从其他游戏中仍然可以使用这些类别。 但有2个错误,涉及“被宣布的外地”。
法典:
public static Minecraft getMinecraft()
{
try
{
Field field = Minecraft.getDeclaredField("a"); // Error here
field.setAccessible(true);
return (Minecraft)field.get(null);
}
catch(IllegalAccessException illegalaccessexception)
{
illegalaccessexception.printStackTrace();
}
catch(NoSuchFieldException nosuchfieldexception)
{
nosuchfieldexception.printStackTrace();
}
return null;
}
另一起案件与这种情况一样,因此无需向你表明。
误差:
TMIUtils.java:23: cannot find symbol
symbol : method getDeclaredField(java.lang.String)
location: class net.minecraft.client.Minecraft
Field field = Minecraft.getDeclaredField("a");
How will i go about fixing this? (keep in mind this is the first time working with getDeclaredField too)