Advertisement
Gamebuster

Untitled

Nov 23rd, 2018
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:3: error: package org.apache.logging.log4j does not exist
  2. import org.apache.logging.log4j.Level;
  3. ^
  4. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:7: error: package net.minecraftforge.fml.common.event does not exist
  5. import net.minecraftforge.fml.common.event.FMLInitializationEvent;
  6. ^
  7. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:8: error: package net.minecraftforge.fml.common.event does not exist
  8. import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
  9. ^
  10. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:9: error: package net.minecraftforge.fml.common.event does not exist
  11. import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
  12. ^
  13. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:13: error: cannot find symbol
  14. public void preInit(FMLPreInitializationEvent e){
  15. ^
  16. symbol: class FMLPreInitializationEvent
  17. location: class ClientProxy
  18. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:25: error: cannot find symbol
  19. public void init(FMLInitializationEvent e){
  20. ^
  21. symbol: class FMLInitializationEvent
  22. location: class ClientProxy
  23. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:29: error: cannot find symbol
  24. public void postInit(FMLPostInitializationEvent e){
  25. ^
  26. symbol: class FMLPostInitializationEvent
  27. location: class ClientProxy
  28. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:15: error: cannot find symbol
  29. Main.LOGGER.log(Level.INFO, "Loading native libraries...");
  30. ^
  31. symbol: variable Level
  32. location: class ClientProxy
  33. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:15: error: cannot access Logger
  34. Main.LOGGER.log(Level.INFO, "Loading native libraries...");
  35. ^
  36. class file for org.apache.logging.log4j.Logger not found
  37. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:17: error: cannot find symbol
  38. Main.LOGGER.log(Level.INFO, "Loaded native libraries!");
  39. ^
  40. symbol: variable Level
  41. location: class ClientProxy
  42. C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:20: error: cannot find symbol
  43. Main.LOGGER.log(Level.ERROR, helloWorld());
  44. ^
  45. symbol: variable Level
  46. location: class ClientProxy
  47. 11 errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement