Kinsamanka/feature/#2135 tango controls support 2 7 2#2401
Kinsamanka/feature/#2135 tango controls support 2 7 2#2401Limraj wants to merge 4 commits intorelease/2.7.4from
Conversation
…rols_Support_2_7_2
There was a problem hiding this comment.
CodeQL found more than 10 potential problems in the proposed changes. Check the Files changed tab for more details.
| devAttr.insert(iv); | ||
| break; | ||
| case TangoConst.Tango_DEV_SHORT: | ||
| devAttr.insert((short) iv); |
Check failure
Code scanning / CodeQL
User-controlled data in numeric cast
| devAttr.insert(dv); | ||
| break; | ||
| case TangoConst.Tango_DEV_FLOAT: | ||
| devAttr.insert((float) dv); |
Check failure
Code scanning / CodeQL
User-controlled data in numeric cast
| */ | ||
|
|
||
| @JsonRemoteEntity | ||
| public class TangoDataSourceVO extends DataSourceVO<TangoDataSourceVO> { |
Check failure
Code scanning / CodeQL
No clone method
| public int eventID; | ||
| } | ||
|
|
||
| private class EventCallBack extends CallBack { |
Check warning
Code scanning / CodeQL
Serializable inner class of non-serializable class
|
|
||
| private class EventCallBack extends CallBack { | ||
|
|
||
| public void push_event(EventData event) { |
Check notice
Code scanning / CodeQL
Missing Override annotation
| return new TangoPointLocatorRT(this); | ||
| } | ||
|
|
||
| public void validate(DwrResponseI18n response) { |
Check notice
Code scanning / CodeQL
Missing Override annotation
| this.attribute = attribute; | ||
| } | ||
|
|
||
| public PointLocatorRT createRuntime() { |
Check notice
Code scanning / CodeQL
Missing Override annotation
| return new LocalizableMessage("common.default", attribute); | ||
| } | ||
|
|
||
| public boolean isSettable() { |
Check notice
Code scanning / CodeQL
Missing Override annotation
| this.dataTypeId = dataTypeId; | ||
| } | ||
|
|
||
| public LocalizableMessage getConfigurationDescription() { |
Check notice
Code scanning / CodeQL
Missing Override annotation
| @JsonRemoteProperty | ||
| private boolean settable; | ||
|
|
||
| public int getDataTypeId() { |
Check notice
Code scanning / CodeQL
Missing Override annotation
No description provided.