1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2024-12-04 11:39:52 +02:00

Исправлены ошибки checkstyle

This commit is contained in:
Капралов Александр 2021-08-29 11:21:57 +03:00
parent 74e859fc40
commit 2bab3e7423

View File

@ -181,13 +181,17 @@ public class EventDataExchangeLoadCheck
Conditional conditional = statementMethod.getIfPart();
Expression predicate = conditional.getPredicate();
if (predicate instanceof DynamicFeatureAccess)
{
return checkDynamicFeatureAccess((DynamicFeatureAccess)predicate, checkCalls);
}
else if (predicate instanceof Invocation)
{
FeatureAccess expression = ((Invocation)predicate).getMethodAccess();
if (expression instanceof DynamicFeatureAccess
&& checkDynamicFeatureAccess((DynamicFeatureAccess)expression, checkCalls))
{
return true;
}
}
else if (predicate instanceof BinaryExpression)
{
@ -197,10 +201,14 @@ public class EventDataExchangeLoadCheck
{
Expression expression = temp.getKey();
if (expression instanceof Invocation)
{
expression = ((Invocation)expression).getMethodAccess();
}
if (expression instanceof DynamicFeatureAccess
&& checkDynamicFeatureAccess((DynamicFeatureAccess)expression, checkCalls))
{
return true;
}
}
}
@ -261,7 +269,9 @@ public class EventDataExchangeLoadCheck
BinaryExpression currentExpression = null;
if (binaryLeft instanceof BinaryExpression)
{
currentExpression = (BinaryExpression)binaryLeft;
}
else
{
mapOperatorOperand.put(binaryLeft, tempOperation);
@ -275,9 +285,13 @@ public class EventDataExchangeLoadCheck
tempOperation = currentExpression.getOperation();
mapOperatorOperand.put(temp, tempOperation);
if (binaryLeft instanceof BinaryExpression)
{
currentExpression = (BinaryExpression)binaryLeft;
}
else
{
currentExpression = null;
}
}
mapOperatorOperand.put(binaryLeft, tempOperation);