Кто-то мне помогает

kaozshakdun

Интересующийся
Пользователь
Сообщения
73
Розыгрыши
0
Репутация
0
Реакции
3
Баллы
350
Может кто-нибудь сказать мне, как я могу исправить эту ошибку
dir:

CONSTRUÇÃO FALHADA
C: \ Users \ Kaoz \ Desktop \ Nova pasta \ build.xml: 17: A criação do diretório G: \ Build \ Core não foi bem-sucedida por um motivo desconhecido

Tempo total: 2 segundos
 
Попробуйте теперь скомпилировать.

Мне сейчас не до этого.
Я пришлю вам идентификатор и пароль моего Teamviwer, чтобы вы могли видеть настройки моего компьютера
 

clean:

init:

BUILD FAILED
C:\Users\Kaoz\Desktop\SystemCity\full.xml:34: Directory G:\Build creation was not successful for an unknown reason

Total time: 1 second
G:\Build creation was not successful for an unknown reason

В build.xml и full.xml
Это:
<property name="build" location="G:\Build"/>
Меняем на это:
<property name="build" location="build"/>
 
Последнее редактирование:
Ну такие банальные траблы, я хз.
У меня это дерьмо даже на 8й жабе собирается. :D
Код:
dir:
    [mkdir] Created dir: D:\SystemCity\build

compile:
    [javac] D:\SystemCity\build.xml:21: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 1397 source files to D:\SystemCity\build
    [javac] D:\SystemCity\java\sc\FileLogFormatter.java:19: warning: '_' used as an identifier
    [javac]     private static final String _ = "\t";
    [javac]                                 ^
    [javac]   (use of '_' as an identifier might not be supported in releases after Java SE 8)
    [javac] D:\SystemCity\java\sc\FileLogFormatter.java:26: warning: '_' used as an identifier
    [javac]         output.append(_);
    [javac]                       ^
    [javac]   (use of '_' as an identifier might not be supported in releases after Java SE 8)
    [javac] D:\SystemCity\java\sc\FileLogFormatter.java:28: warning: '_' used as an identifier
    [javac]         output.append(_);
    [javac]                       ^
    [javac]   (use of '_' as an identifier might not be supported in releases after Java SE 8)
    [javac] D:\SystemCity\java\sc\FileLogFormatter.java:30: warning: '_' used as an identifier
    [javac]         output.append(_);
    [javac]                       ^
    [javac]   (use of '_' as an identifier might not be supported in releases after Java SE 8)
    [javac] D:\SystemCity\java\sc\FileLogFormatter.java:32: warning: '_' used as an identifier
    [javac]         output.append(_);
    [javac]                       ^
    [javac]   (use of '_' as an identifier might not be supported in releases after Java SE 8)
    [javac] D:\SystemCity\java\sc\Config.java:2675: warning: [rawtypes] found raw type: Class
    [javac]                         final Class cls = pa.getClass();
    [javac]                               ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\util\NetList.java:38: warning: [rawtypes] found raw type: List
    [javac]     public int LoadFromLines(List lines)
    [javac]                              ^
    [javac]   missing type arguments for generic class List<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Object declared in interface List
    [javac] D:\SystemCity\java\sc\ext\scripts\Scripts.java:89: warning: [rawtypes] found raw type: Class
    [javac]         Class c;
    [javac]         ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\Scripts.java:260: warning: [rawtypes] found raw type: Class
    [javac]             Class c;
    [javac]             ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\Scripts.java:298: warning: [rawtypes] found raw type: Class
    [javac]                 Class c = classLoader.loadClass(name);
    [javac]                 ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\network\AbstractPacket.java:5: warning: [rawtypes] found raw type: MMOClient
    [javac] public abstract class AbstractPacket<T extends MMOClient>
    [javac]                                                ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\SendablePacket.java:3: warning: [rawtypes] found raw type: MMOClient
    [javac] public abstract class SendablePacket<T extends MMOClient> extends AbstractPacket<T>
    [javac]                                                ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\MMOClient.java:7: warning: [rawtypes] found raw type: MMOConnection
    [javac] public abstract class MMOClient<T extends MMOConnection>
    [javac]                                           ^
    [javac]   missing type arguments for generic class MMOConnection<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOClient declared in class MMOConnection
    [javac] D:\SystemCity\java\sc\ext\network\MMOConnection.java:11: warning: [rawtypes] found raw type: MMOClient
    [javac] public class MMOConnection<T extends MMOClient>
    [javac]                                      ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\game\templates\L2Item.java:174: warning: [rawtypes] found raw type: Enum
    [javac]     public final Enum type;
    [javac]                  ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\game\templates\L2Item.java:201: warning: [rawtypes] found raw type: Enum
    [javac]     protected L2Item(final Enum type, final StatsSet set)
    [javac]                            ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\game\templates\L2Item.java:257: warning: [rawtypes] found raw type: Enum
    [javac]     public Enum getItemType()
    [javac]            ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\game\model\instances\L2ItemInstance.java:175: warning: [rawtypes] found raw type: Future
    [javac]     private Future _lazyUpdateInDb;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\instances\L2ItemInstance.java:467: warning: [rawtypes] found raw type: Enum
    [javac]     public Enum getItemType()
    [javac]            ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\game\model\instances\L2ItemInstance.java:941: warning: [rawtypes] found raw type: Future
    [javac]                 Future lazyUpdateInDb = _lazyUpdateInDb;
    [javac]                 ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Effect.java:79: warning: [rawtypes] found raw type: Comparable
    [javac] public abstract class L2Effect implements Comparable
    [javac]                                           ^
    [javac]   missing type arguments for generic class Comparable<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in interface Comparable
    [javac] D:\SystemCity\java\sc\game\model\instances\L2CubicInstance.java:73: warning: [rawtypes] found raw type: Future
    [javac]     private Future _disappearTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\instances\L2CubicInstance.java:74: warning: [rawtypes] found raw type: Future
    [javac]     private Future _actionTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\instances\L2CubicInstance.java:75: warning: [rawtypes] found raw type: Future
    [javac]     private Future _healTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\instances\L2CubicInstance.java:76: warning: [rawtypes] found raw type: Future
    [javac]     private Future _cureTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Character.java:401: warning: [rawtypes] found raw type: Future
    [javac]     public Future _skillTask;
    [javac]            ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Character.java:403: warning: [rawtypes] found raw type: Future
    [javac]     public Future _skillLaunchedTask;
    [javac]            ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Character.java:405: warning: [rawtypes] found raw type: Future
    [javac]     public Future _stanceTask;
    [javac]            ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Character.java:482: warning: [rawtypes] found raw type: Future
    [javac]     public Future _moveTask;
    [javac]            ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:505: warning: [rawtypes] found raw type: Future
    [javac]     private Future _botCheck;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:508: warning: [rawtypes] found raw type: Future
    [javac]     private Future _bonusExpiration;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:532: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _taskWater;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:546: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     public ScheduledFuture _taskforfish;
    [javac]            ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:547: warning: [rawtypes] found raw type: Future
    [javac]     private Future _kickTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:1157: warning: [rawtypes] found raw type: Class
    [javac]     public QuestState getQuestState(final Class quest)
    [javac]                                           ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:2306: warning: [rawtypes] found raw type: Future
    [javac]     private Future _broadcastCharInfoTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:2372: warning: [rawtypes] found raw type: Future
    [javac]     private Future _userInfoTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:4721: warning: [rawtypes] found raw type: Future
    [javac]     public Future _unjailTask;
    [javac]            ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:8844: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     public ScheduledFuture getWaterTask()
    [javac]            ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\L2Player.java:9258: warning: [rawtypes] found raw type: Future
    [javac]     private Future _PvPRegTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\instances\L2NpcInstance.java:198: warning: [rawtypes] found raw type: Constructor
    [javac]     private Constructor _ai_constructor;
    [javac]             ^
    [javac]   missing type arguments for generic class Constructor<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Constructor
    [javac] D:\SystemCity\java\sc\game\model\instances\L2DecoyInstance.java:24: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _decoyLifeTask;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\instances\L2DecoyInstance.java:26: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _hateSpam;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\L2Radar.java:51: warning: [overrides] Class L2Radar.RadarMarker overrides equals, but neither it nor any superclass overrides hashCode method
    [javac]     public class RadarMarker extends Location
    [javac]            ^
    [javac] D:\SystemCity\java\sc\game\model\instances\L2AgathionInstance.java:71: warning: [rawtypes] found raw type: Future
    [javac]     private Future _actionTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\ext\Bonus.java:63: warning: [rawtypes] found raw type: Class
    [javac]                 Class cls = getClass();
    [javac]                 ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\model\instances\L2MonsterInstance.java:124: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture minionMaintainTask;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\instances\L2TamedBeastInstance.java:38: warning: [rawtypes] found raw type: Future
    [javac]     private Future _buffTask = null;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\game\model\instances\L2TamedBeastInstance.java:39: warning: [rawtypes] found raw type: Future
    [javac]     private Future _durationCheckTask = null;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\ext\scripts\Script.java:10: warning: [rawtypes] found raw type: Class
    [javac]     private Class _class;
    [javac]             ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\Script.java:12: warning: [rawtypes] found raw type: Class
    [javac]     public Script(Class c)
    [javac]                   ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\Script.java:46: warning: [rawtypes] found raw type: Class
    [javac]             Class[] types = new Class[args.length];
    [javac]             ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\Script.java:46: warning: [rawtypes] found raw type: Class
    [javac]             Class[] types = new Class[args.length];
    [javac]                                 ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\Script.java:72: warning: [rawtypes] found raw type: Class
    [javac]     public Class getRawClass()
    [javac]            ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\skills\funcs\FuncTemplate.java:13: warning: [rawtypes] found raw type: Class
    [javac]     public Class _func;
    [javac]            ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\skills\funcs\FuncTemplate.java:15: warning: [rawtypes] found raw type: Constructor
    [javac]     public Constructor _constructor;
    [javac]            ^
    [javac]   missing type arguments for generic class Constructor<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Constructor
    [javac] D:\SystemCity\java\sc\game\skills\funcs\FuncTemplate.java:37: warning: [rawtypes] found raw type: Class
    [javac]             _constructor = _func.getConstructor(new Class[] {Stats.class, // stats to update
    [javac]                                                     ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\templates\StatsSet.java:505: warning: [rawtypes] found raw type: Enum
    [javac]     public void set(String name, Enum value)
    [javac]                                  ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\ext\network\SelectorThread.java:27: warning: [rawtypes] found raw type: MMOClient
    [javac] public class SelectorThread<T extends MMOClient> extends Thread
    [javac]                                       ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\SelectorThread.java:764: warning: [rawtypes] found raw type: MMOConnection
    [javac]     protected void allocateReadBuffer(MMOConnection con)
    [javac]                                       ^
    [javac]   missing type arguments for generic class MMOConnection<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOClient declared in class MMOConnection
    [javac] D:\SystemCity\java\sc\game\model\Reflection.java:15: warning: [overrides] Class Reflection overrides equals, but neither it nor any superclass overrides hashCode method
    [javac] public class Reflection
    [javac]        ^
    [javac] D:\SystemCity\java\sc\game\model\entity\siege\Siege.java:54: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     protected ScheduledFuture _siegeStartTask;
    [javac]               ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\entity\siege\Siege.java:55: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     protected ScheduledFuture _fameTask;
    [javac]               ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\instances\L2TrapInstance.java:24: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _destroyTask;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\quest\State.java:3: warning: [overrides] Class State overrides equals, but neither it nor any superclass overrides hashCode method
    [javac] public class State
    [javac]        ^
    [javac] D:\SystemCity\java\sc\game\model\quest\QuestTimer.java:29: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _schedular;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\templates\L2NpcTemplate.java:130: warning: [rawtypes] found raw type: Constructor
    [javac]     public Constructor getInstanceConstructor()
    [javac]            ^
    [javac]   missing type arguments for generic class Constructor<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Constructor
    [javac] D:\SystemCity\java\sc\game\templates\L2NpcTemplate.java:136: warning: [rawtypes] found raw type: Class
    [javac]     public boolean isInstanceOf(final Class _class)
    [javac]                                       ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\templates\L2NpcTemplate.java:144: warning: [rawtypes] found raw type: Class
    [javac]         Class _this_class = null;
    [javac]         ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\model\instances\L2DoorInstance.java:57: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _autoActionTask;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\game\model\entity\siege\fortress\FortressSiege.java:44: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     private ScheduledFuture _commanderRespawnTask = null;
    [javac]             ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:12: warning: [rawtypes] found raw type: Class
    [javac]     private Class _class;
    [javac]             ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:15: warning: [rawtypes] found raw type: Class
    [javac]     public ScriptObject(Class c, Object o)
    [javac]                         ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:142: warning: [rawtypes] found raw type: Class
    [javac]         Class[] types = new Class[args.length];
    [javac]         ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:142: warning: [rawtypes] found raw type: Class
    [javac]         Class[] types = new Class[args.length];
    [javac]                             ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:162: warning: [rawtypes] found raw type: Class
    [javac]                             Class p = m.getParameterTypes()[i];
    [javac]                             ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:167: warning: [rawtypes] found raw type: Class
    [javac]                                 Class argc = args[i].getClass();
    [javac]                                 ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:239: warning: [rawtypes] found raw type: Class
    [javac]     private Method getMethod(String s, Class[] types)
    [javac]                                        ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\scripts\ScriptObject.java:256: warning: [rawtypes] found raw type: Class
    [javac]     public Class getRawClass()
    [javac]            ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\ext\network\IPacketHandler.java:5: warning: [rawtypes] found raw type: MMOClient
    [javac] public interface IPacketHandler<T extends MMOClient>
    [javac]                                           ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\IMMOExecutor.java:3: warning: [rawtypes] found raw type: MMOClient
    [javac] public interface IMMOExecutor<T extends MMOClient>
    [javac]                                         ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\IClientFactory.java:3: warning: [rawtypes] found raw type: MMOClient
    [javac] public interface IClientFactory<T extends MMOClient>
    [javac]                                           ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\HeaderHandler.java:3: warning: [rawtypes] found raw type: MMOClient
    [javac] public abstract class HeaderHandler<T extends MMOClient, H extends HeaderHandler<T, H>>
    [javac]                                               ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\UDPHeaderHandler.java:7: warning: [rawtypes] found raw type: MMOClient
    [javac] public abstract class UDPHeaderHandler<T extends MMOClient> extends HeaderHandler<T, UDPHeaderHandler<T>>
    [javac]                                                  ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\UDPHeaderHandler.java:19: warning: [rawtypes] found raw type: HeaderInfo
    [javac]     protected abstract HeaderInfo handleHeader(ByteBuffer buf);
    [javac]                        ^
    [javac]   missing type arguments for generic class HeaderInfo<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class HeaderInfo
    [javac] D:\SystemCity\java\sc\ext\network\TCPHeaderHandler.java:6: warning: [rawtypes] found raw type: MMOClient
    [javac] public abstract class TCPHeaderHandler<T extends MMOClient> extends HeaderHandler<T, TCPHeaderHandler<T>>
    [javac]                                                  ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\ext\network\TCPHeaderHandler.java:18: warning: [rawtypes] found raw type: HeaderInfo
    [javac]     public abstract HeaderInfo handleHeader(SelectionKey key, ByteBuffer buf);
    [javac]                     ^
    [javac]   missing type arguments for generic class HeaderInfo<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class HeaderInfo
    [javac] D:\SystemCity\java\sc\ext\network\SelectorConfig.java:5: warning: [rawtypes] found raw type: MMOClient
    [javac] public class SelectorConfig<T extends MMOClient>
    [javac]                                       ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\game\model\instances\L2PetInstance.java:165: warning: [rawtypes] found raw type: Future
    [javac]     private Future _feedTask;
    [javac]             ^
    [javac]   missing type arguments for generic class Future<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface Future
    [javac] D:\SystemCity\java\sc\ext\network\ReceivablePacket.java:5: warning: [rawtypes] found raw type: MMOClient
    [javac] public abstract class ReceivablePacket<T extends MMOClient> extends AbstractPacket<T> implements Runnable
    [javac]                                                  ^
    [javac]   missing type arguments for generic class MMOClient<T>
    [javac]   where T is a type-variable:
    [javac]     T extends MMOConnection declared in class MMOClient
    [javac] D:\SystemCity\java\sc\auth\LoginController.java:122: warning: [rawtypes] found raw type: Class
    [javac]             DEFAULT_CRYPT = (Crypt) Class.forName("sc.auth.crypt." + Config.DEFAULT_PASSWORD_ENCODING).getMethod("getInstance", new Class[0]).invoke(null, new Object[0]);
    [javac]                                                                                                                                     ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\auth\LoginController.java:126: warning: [rawtypes] found raw type: Class
    [javac]                     legacy.add((Crypt) Class.forName("sc.auth.crypt." + method).getMethod("getInstance", new Class[0]).invoke(null, new Object[0]));
    [javac]                                                                                                              ^
    [javac]   missing type arguments for generic class Class<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class Class
    [javac] D:\SystemCity\java\sc\game\templates\Item.java:9: warning: [rawtypes] found raw type: Enum
    [javac]     public Enum type;
    [javac]            ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\auth\SelectorHelper.java:51: warning: [rawtypes] found raw type: HeaderInfo
    [javac]     public HeaderInfo handleHeader(SelectionKey key, ByteBuffer buf)
    [javac]            ^
    [javac]   missing type arguments for generic class HeaderInfo<T>
    [javac]   where T is a type-variable:
    [javac]     T extends Object declared in class HeaderInfo
    [javac] D:\SystemCity\java\sc\ext\scripts\AdminScripts.java:18: warning: [rawtypes] found raw type: Enum
    [javac]     public boolean useAdminCommand(Enum comm, String[] wordList, String fullString, L2Player activeChar)
    [javac]                                    ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\ext\scripts\AdminScripts.java:68: warning: [rawtypes] found raw type: Enum
    [javac]     public Enum[] getAdminCommandEnum()
    [javac]            ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\game\handler\IAdminCommandHandler.java:7: warning: [rawtypes] found raw type: Enum
    [javac]     public boolean useAdminCommand(Enum comm, String[] wordList, String fullString, L2Player activeChar);
    [javac]                                    ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\game\handler\IAdminCommandHandler.java:8: warning: [rawtypes] found raw type: Enum
    [javac]     public Enum[] getAdminCommandEnum();
    [javac]            ^
    [javac]   missing type arguments for generic class Enum<E>
    [javac]   where E is a type-variable:
    [javac]     E extends Enum<E> declared in class Enum
    [javac] D:\SystemCity\java\sc\ext\scripts\Functions.java:41: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     public static ScheduledFuture executeTask(final L2Object object, final String sClass, final String sMethod, final Object[] args, final HashMap<String, Object> variables, Integer delay)
    [javac]                   ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] D:\SystemCity\java\sc\ext\scripts\Functions.java:53: warning: [rawtypes] found raw type: ScheduledFuture
    [javac]     public static ScheduledFuture executeTask(final String sClass, final String sMethod, final Object[] args, final HashMap<String, Object> variables, Integer delay)
    [javac]                   ^
    [javac]   missing type arguments for generic class ScheduledFuture<V>
    [javac]   where V is a type-variable:
    [javac]     V extends Object declared in interface ScheduledFuture
    [javac] Note: Some input files additionally use unchecked or unsafe operations.
    [javac] 100 warnings

dist:
      [jar] Building jar: D:\SystemCity\build\scserver.jar

BUILD SUCCESSFUL
Total time: 12 seconds
 
А так, вообще, я бы вместо этого хлама:
Screenshot.jpg
Поставил бы птску гф.
 
Hey man, lets try to use your language, because it will be better if we translate ourselves
 
Назад
Сверху Снизу