I hereby claim:
- I am matthewacon on github.
- I am matthewacon (https://keybase.io/matthewacon) on keybase.
- I have a public key ASBWCEuhe5uOYs3cVCma9tFHNm6iT55ddtMu7jgb5XcjRAo
To claim this, I am signing this object:
Scanning dependencies of target cvengine | |
[ 14%] Building CXX object src/CMakeFiles/cvengine.dir/CvEngine_Base.cpp.o | |
In file included from /home/matthew/Git/CvEngine/src/CvEngine_Base.cpp:1:0: | |
/home/matthew/Git/CvEngine/src/include/CvEngine.hpp:17:35: fatal error: opencv2/xfeatures2d.hpp: No such file or directory | |
compilation terminated. | |
src/CMakeFiles/cvengine.dir/build.make:62: recipe for target 'src/CMakeFiles/cvengine.dir/CvEngine_Base.cpp.o' failed | |
make[2]: *** [src/CMakeFiles/cvengine.dir/CvEngine_Base.cpp.o] Error 1 | |
CMakeFiles/Makefile2:85: recipe for target 'src/CMakeFiles/cvengine.dir/all' failed | |
make[1]: *** [src/CMakeFiles/cvengine.dir/all] Error 2 | |
Makefile:83: recipe for target 'all' failed |
public Boolean blockIsInjected(BlockType.BlockTypes bl) throws InvalidBlockTypeException { | |
switch (bl) { | |
case FIELD : return this.fieldsInjected; | |
case CONSTRUCTOR : return this.constructorsInjected; | |
case METHOD : return this.methodsInjected; | |
default : throw new InvalidBlockTypeException(); | |
} | |
} |
package examples; | |
import java.util.HashMap; | |
/** | |
* Created by matthew on 12/04/16. | |
*/ | |
public class AlessioAskedForAnExample { | |
public enum ExampleEnums { |
May 01, 2016 10:12:52 AM org.netherrack.NetherServer main | |
INFO: Starting Minecraft server version 1.9.2 | |
Exception in thread "main" java.lang.NoClassDefFoundError: org/bukkit/Material | |
at org.netherrack.world.generator.BedrockLayer.<init>(BedrockLayer.java:13) | |
at org.netherrack.world.generator.WavyGenerator.<init>(WavyGenerator.java:23) | |
at org.netherrack.NetherServer.main(NetherServer.java:120) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:497) |
Total system memory: 422.0 | |
- Free memory before benchmark: 415.3699417114258 | |
Index: 0 | |
- Duration: 58 | |
- Output: [[[[[[[[Ljava.lang.Character;@69222c14 | |
Index: 1 | |
- Duration: 1 | |
- Output: [[[[[[[[Ljava.lang.Character;@470e2030 |
Exception in thread "main" java.lang.VerifyError: Bad return type | |
Exception Details: | |
Location: | |
ToolAccessor$1792393294.customOperator()Ljava/lang/Integer; @54: ireturn | |
Reason: | |
Type integer (current frame, stack[0]) is not assignable to 'java/lang/Integer' (from method signature) | |
Current Frame: | |
bci: @54 | |
flags: { } | |
locals: { 'ToolAccessor$1792393294', integer, integer, integer } |
Byte* getRelevantData(RakBitStream& stream) { | |
unsigned long protocolLength = sizeOfArray(protocolInfo); | |
unsigned long relevantDataLength = sizeOfArray(relevantData); | |
//Determining the final total length of the byte array to be returned. | |
unsigned long finalRelevantLength; | |
for (unsigned long l = 0l; l < relevantDataLength; l++) { | |
finalRelevantLength += protocolInfo[relevantData[l]]; | |
} |
import sun.reflect.Reflection; | |
public class StaticInitializationProblems { | |
static { | |
doSomething(); | |
} | |
public static void doSomething() { | |
System.out.println(Reflection.getCallerClass().getSimpleName()); | |
} |
I hereby claim:
To claim this, I am signing this object:
package wurmcraft.serveressentials.common.commands.test; | |
import net.minecraft.command.CommandBase; | |
import net.minecraft.command.CommandException; | |
import net.minecraft.command.ICommandSender; | |
import net.minecraft.entity.player.EntityPlayer; | |
import net.minecraft.entity.player.EntityPlayerMP; | |
import net.minecraft.server.MinecraftServer; | |
import net.minecraftforge.fml.common.FMLCommonHandler; | |
import wurmcraft.serveressentials.common.api.storage.*; |