Skip to content

Commit

Permalink
fix a regression that loses compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Jan 30, 2023
1 parent fd4169c commit bbb167b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/javax/speech/EngineList.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
* rejectMatch methods are used to prune the
* list to find the best match given multiple criteria.
*/
public class EngineList extends Vector<Object> {
@SuppressWarnings({"rawtypes", "unchecked"})
public class EngineList extends Vector {

/**
* Return true if one or more EngineModeDesc
Expand Down Expand Up @@ -125,6 +126,5 @@ public synchronized void requireMatch(EngineModeDesc require) {
this.removeElementAt(i);
}
}

}
}

0 comments on commit bbb167b

Please sign in to comment.