Skip to content

Commit 27a04d3

Browse files
authored
80 char limit
1 parent f4dcc7d commit 27a04d3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/paintcomponents/data/DataToPoint.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ public DataToPoint(int x, int y, Type expectedType) {
5050
* @throws DataFromPointProviderCannotProvideDataException when the connecting dataInputPoint's data provider cannot provide a information
5151
* @throws DataFromPointNoDataProviderException when the connecting DataInputPoint does not have a data provider associated
5252
*/
53-
public Object fetchData() throws NoConnectingLineSegmentException, NoSuchElementException, DataFromPointNoDataProviderException, DataFromPointProviderCannotProvideDataException{
53+
public Object fetchData() throws NoConnectingLineSegmentException, NoSuchElementException,
54+
DataFromPointNoDataProviderException, DataFromPointProviderCannotProvideDataException{
5455
if(this.lineSegment == null) throw new NoConnectingLineSegmentException();
5556

5657
Object returnVal = lineSegment.getFromPoint().getData();// .toString();

0 commit comments

Comments
 (0)