--------------------------------------------------------------------------
public void run ()
{
try
{
for (;;)
{
Yh localYh = this;
int i = 0;
String str = null;
VK localVK;
if ( ( localVK = localYh.MQ.yK() ) == null )
{
if ( Licensing.isInternetRequired() )
{
/*
* 改成0
*/
i = 2;
/*
* Your license of JEB requires a direct Internet connection
*/
...
}
}
else if ( localVK.Lx() == 1 )
{
/*
* 改成0
*/
i = 3;
/*
* Your license of JEB is not allowed to run
*/
...
}
else
{
long l1 = localVK.yK() / 1000L;
long l2 = Licensing.getExpirationTimestamp();
if ( ( l1 > 0L ) && ( l2 > 0L ) && ( l1 > l2 ) )
{
/*
* 改成0
*/
i = 4;
/*
* Your JEB subscription or trial period has expired
*/
...
}
}
localYh.aG.setStatus( i );
localYh.aG.notifyListeners( new JebEvent( J.CoreError, str ) );
if ( ( i == 0 ? 1 : 0 ) == 0 )
{
Thread.sleep( 20000L );
AbstractContext.terminate();
}
Thread.sleep( 1800000L );
}
return;
}
catch ( InterruptedException localInterruptedException )
{
AbstractContext.terminate();
}
}
private boolean yK ()
{
int i = 0;
String str = null;
VK localVK;
if ( ( localVK = this.MQ.yK() ) == null )
{
if ( Licensing.isInternetRequired() )
{
/*
* 改成0
*/
i = 2;
/*
* Your license of JEB requires a direct Internet connection
*/
...
}
}
else if ( localVK.Lx() == 1 )
{
/*
* 改成0
*/
i = 3;
/*
* Your license of JEB is not allowed to run
*/
...
}
else
{
long l1 = localVK.yK() / 1000L;
long l2 = Licensing.getExpirationTimestamp();
if ( ( l1 > 0L ) && ( l2 > 0L ) && ( l1 > l2 ) )
{
/*
* 改成0
*/
i = 4;
/*
* Your JEB subscription or trial period has expired
*/
...
}
}
if ( i == 0 )
{
return true;
}
this.aG.setStatus( i );
this.aG.notifyListeners( new JebEvent( J.CoreError, str ) );
return false;
}
--------------------------------------------------------------------------
vX.class
--------------------------------------------------------------------------
/*
* 在检查"License key"。将所有返回false的地方改成返回true。
*/
public final boolean yK ( String paramString, int[] paramArrayOfInt )
{
...
}
--------------------------------------------------------------------------