Changeset ee5161606d84758eea6be33e744f4cf06664e8d6
- Timestamp:
- 03/27/08 00:05:31
(5 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1206572731 +0100
- git-parent:
[85dfdfdde360f9a5de9ab8243123cfdd83efd5c1]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1206288105 +0100
- Message:
new convenience constructor added
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5a0c3a5 |
ree51616 |
|
| 61 | 61 | System.arraycopy(args, 0, myargs, 1, args.length); |
|---|
| 62 | 62 | instance = createInstance(myargs); |
|---|
| | 63 | } |
|---|
| | 64 | |
|---|
| | 65 | public JVLC(String args) |
|---|
| | 66 | { |
|---|
| | 67 | this(args.split(" ")); |
|---|
| 63 | 68 | } |
|---|
| 64 | 69 | |
|---|