We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4dcc7d commit 27a04d3Copy full SHA for 27a04d3
1 file changed
src/paintcomponents/data/DataToPoint.java
@@ -50,7 +50,8 @@ public DataToPoint(int x, int y, Type expectedType) {
50
* @throws DataFromPointProviderCannotProvideDataException when the connecting dataInputPoint's data provider cannot provide a information
51
* @throws DataFromPointNoDataProviderException when the connecting DataInputPoint does not have a data provider associated
52
*/
53
- public Object fetchData() throws NoConnectingLineSegmentException, NoSuchElementException, DataFromPointNoDataProviderException, DataFromPointProviderCannotProvideDataException{
+ public Object fetchData() throws NoConnectingLineSegmentException, NoSuchElementException,
54
+ DataFromPointNoDataProviderException, DataFromPointProviderCannotProvideDataException{
55
if(this.lineSegment == null) throw new NoConnectingLineSegmentException();
56
57
Object returnVal = lineSegment.getFromPoint().getData();// .toString();
0 commit comments