Skip to content

Commit fb333fe

Browse files
authored
jme3-ios: correct some javadoc that was copy-pasted from jme3-android (#1651)
1 parent a3a77eb commit fb333fe

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

jme3-ios/src/main/java/com/jme3/input/ios/IosTouchHandler.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,8 @@
4545
import java.util.logging.Logger;
4646

4747
/**
48-
* AndroidTouchHandler is the base class that receives touch inputs from the
49-
* Android system and creates the TouchEvents for jME. This class is designed
50-
* to handle the base touch events for Android rev 9 (Android 2.3). This is
51-
* extended by other classes to add features that were introduced after
52-
* Android rev 9.
48+
* IosTouchHandler is the base class that receives touch inputs from the
49+
* iOS system and creates the TouchEvents for jME.
5350
*
5451
* @author iwgeric
5552
*/

jme3-ios/src/main/java/com/jme3/input/ios/TouchEventPool.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009-2020 jMonkeyEngine
2+
* Copyright (c) 2009-2021 jMonkeyEngine
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -37,7 +37,7 @@
3737

3838
/**
3939
* TouchEventPool provides a RingBuffer of jME TouchEvents to help with garbage
40-
* collection on Android. Each TouchEvent is stored in the RingBuffer and is
40+
* collection on iOS. Each TouchEvent is stored in the RingBuffer and is
4141
* reused if the TouchEvent has been consumed.
4242
*
4343
* If a TouchEvent has not been consumed, it is placed back into the pool at the

0 commit comments

Comments
 (0)