-
Notifications
You must be signed in to change notification settings - Fork 296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kinsamanka/feature/#2135 tango controls support 2 7 2 #2401
base: release/2.7.4
Are you sure you want to change the base?
Kinsamanka/feature/#2135 tango controls support 2 7 2 #2401
Conversation
…rols_Support_2_7_2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.