Showing 472 of 2,519 total issues
Method sendRequest
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
@Override
public void sendRequest(WXRequest request, final OnHttpListener listener) {
OkHttpClient httpClient = new OkHttpClient();
httpClient.setConnectTimeout(request.timeoutMs, TimeUnit.MILLISECONDS);
httpClient.setReadTimeout(request.timeoutMs, TimeUnit.MILLISECONDS);
Method sendRequest
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
@Override
public void sendRequest(final WXRequest request, final OnHttpListener listener) {
OkHttpClient client = new OkHttpClient.Builder()
.addNetworkInterceptor(new WeexOkhttp3Interceptor())
.connectTimeout(request.timeoutMs, TimeUnit.MILLISECONDS)
Function 0
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports, __webpack_require__) {
;__weex_define__("@weex-component/04ff08101087ed57bb9c0e3a77fc1809", [], function(__weex_require__, __weex_exports__, __weex_module__){
__webpack_require__(14);
Method setImage
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
@Override
public void setImage(final String url, final ImageView view,
WXImageQuality quality, final WXImageStrategy strategy) {
WXSDKManager.getInstance().postOnUiThread(new Runnable() {
Function 0
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports, __webpack_require__) {
;__weex_define__("@weex-component/8e6cff2d0487efb24411ddaeb27766c3", [], function(__weex_require__, __weex_exports__, __weex_module__){
;
Method testTextStyleColumn
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public void testTextStyleColumn(){
for(final View caseView : mCaseListIndexView){
String caseViewText = new String("");
caseViewText = ((WXTextView)caseView).getText().toString();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method testTextStyleRow
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public void testTextStyleRow(){
for(final View caseView : mCaseListIndexView){
if (((WXTextView)caseView).getText().toString().equals("TC_Text")){
Log.e(TAG, "TC_Text find");
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method flush
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public void flush() throws IOException {
//Log.i("PackageManager", "flush mPos=" + mPos);
if (mPos > 0) {
if (mOutputStream != null) {
CharBuffer charBuffer = CharBuffer.wrap(mText, 0, mPos);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method execJSWithResult
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
@Override
public byte[] execJSWithResult(String instanceId, String namespace, String function, WXJSObject[] args) {
String result = "";
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method syncCall
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
@ChromeDevtoolsMethod
public SyncCallResponse syncCall(JsonRpcPeer peer, JSONObject params) {
WXLogUtils.e("WxDebug-new >>>> syncCall=" + params);
SyncCallResponse response = new SyncCallResponse();
int syncId = params.optInt("syncId");
Method getValueForField
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
private Object getValueForField(Field field, Object value)
throws JSONException {
try {
if (value != null) {
if (value == JSONObject.NULL) {
Method onBindViewHolder
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
@Override
public void onBindViewHolder(final ItemHolder holder, int position) {
final WXTracing.TraceEvent event = rootEvent.subEvents.valueAt(position);
holder.itemView.setOnClickListener(new View.OnClickListener() {
@Override
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method setElementParent
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
private void setElementParent(Object element, Object parentElement) {
ElementInfo changesElementInfo = mElementToInfoChangesMap.get(element);
if (changesElementInfo != null &&
parentElement == changesElementInfo.parentElement) {
return;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method _convertToJSONObject
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
private JSONObject _convertToJSONObject(Object fromValue)
throws JSONException, InvocationTargetException, IllegalAccessException {
JSONObject jsonObject = new JSONObject();
if(fromValue instanceof Map) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function 18
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports) {
;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
;
Function 18
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports) {
;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
;
Function 18
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports) {
;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
;
Function 18
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports) {
;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
;
Function 18
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports) {
;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
;
Function 18
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
/***/ function(module, exports) {
;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
;