Commit Graph

61 Commits

Author SHA1 Message Date
894478ab45 SPARK-2204: Code cleanup: Fix raw using of parametrized classes 2020-11-26 22:54:05 +03:00
b0605b3709 SPARK-2204: Code cleanup: Fix raw use of parametrized classes 2020-11-23 01:10:21 +03:00
d714fb6112 SPARK-2204: Code cleanup: Remove unused imports 2020-11-17 23:34:46 +03:00
7c6b4e827f SPARK-2204: Code cleanup: Remove unused fields and variables 2020-11-17 23:26:30 +03:00
517496e82c SPARK-2204: Code cleanup: Convert wrapper types to primitive when possible 2020-11-17 21:42:17 +03:00
7fa5bc29b9 SPARK-2204: Code cleanup: Remove unused imports 2020-11-17 00:59:13 +03:00
bcd8f0c671 SPARK-2204: Code cleanup: Delete some empty unused methods 2020-11-17 00:05:07 +03:00
fb5a40c69a SPARK-2204: Code cleanup: Add private and final modifiers to methods if possible 2020-11-16 23:37:28 +03:00
75682fec07 SPARK-2204: Code cleanup: Remove redundant final modifier from private and static methods 2020-11-16 22:48:52 +03:00
6db11cfcf0 SPARK-2204: Code cleanup: Replace Collections.sort() with List.sort() 2020-11-15 22:06:13 +03:00
e474e1c67f SPARK-2204: Code cleanup: Use Java 8 features like lambda statements/expressions, and method references instead of anonymous inner classes implementing functional interfaces 2020-11-15 22:02:28 +03:00
79a4e366f0 SPARK-2204: Code cleanup: Remove explicit type arguments when applicable
This will improve code readability.
2020-11-15 02:02:41 +03:00
e2f9214cda SPARK-2204: Code cleanup: Replace StringBuffer with StringBuilder when applicable 2020-11-15 01:57:55 +03:00
9cc1a85b43 SPARK-2204: Code cleanup: Replace String.indexOf() with contains() when applicable 2020-11-15 01:51:02 +03:00
1bce50f546 SPARK-2204: Code cleanup: Replace while-loops with foreach-loops (enhanced for statements) 2020-11-15 01:40:45 +03:00
872de24ead SPARK-2204: Code cleanup: Replace for-loops with foreach-loops (enhanced for statements) 2020-11-15 01:32:09 +03:00
cb68ec37d7 SPARK-2204: Code cleanup: Replace if-sequences with switches and compare-methods calls when applicable 2020-11-15 01:19:12 +03:00
3505abc5d5 SPARK-2204: Code cleanup: Replace string literals with Standard Charset objects when applicable 2020-11-15 01:03:02 +03:00
bbf8d95caa SPARK-2204: Code cleanup: Make fields final if possible
This can have a good effect on performance, I think
2020-11-15 00:58:49 +03:00
5c9f41151e SPARK-2204: Code cleanup: Replace C-style array declarations with Java-style ones
Just for justice:)
2020-11-15 00:50:51 +03:00
1491bb0cde SPARK-2204: Code cleanup: Remove unnecessary modifiers from enum constructors and inner enums 2020-11-15 00:35:55 +03:00
dec3a3e4cf update Jira links to https + atlassian.net address 2020-11-14 07:30:07 -06:00
67638034d2 march master branch toward 2.9.5-SNAPSHOT 2020-11-14 07:05:11 -06:00
b1f908b696 Denote release 2.9.4 2020-11-14 06:45:21 -06:00
506e744fbd SPARK-1469: Code cleanup: Fix probable bugs: Remove unused assignment and redundant initializers 2020-11-13 23:00:43 +03:00
0b4b174eef SPARK-1469: Code cleanup: remove redundant local variables. 2020-11-04 23:57:51 +03:00
96a097c649 SPARK-1469: Code cleanup: resolve control flow issues. 2020-11-04 23:14:18 +03:00
93d76d662f SPARK-1469: Code cleanup: remove unused imports. 2020-11-04 22:17:50 +03:00
fae96978d0 SPARK-1469: Code cleanup: remove redundant code constructs. 2020-11-04 00:01:02 +03:00
4359d04f6c SPARK-1469: Code cleanup: make nested classes static if applicable. 2020-11-03 22:11:19 +03:00
fb616c83bf SPARK-1469: Code cleanup: resolve performance issues related to string concatenations. 2020-11-03 00:56:14 +03:00
c6e4037aa1 SPARK-1469: Code cleanup: replace iterations with bulk operations. 2020-11-02 23:43:30 +03:00
ed533c0254 SPARK-1469: Code cleanup: delete unused imports. 2020-11-02 23:43:30 +03:00
93c1c784fb Replace usage of deprecated method with alternative.
Deprecated method:
org.jivesoftware.smack.packet.Stanza.setFrom(java.lang.String)
Alternative method:
org.jivesoftware.smack.packet.Stanza.setFrom(org.jxmpp.jid.Jid)
2020-10-27 22:18:20 +03:00
52f4d7ab05 Replace usage of deprecated method with alternative and remove method itself.
Deprecated method:
```
org.jivesoftware.spark.SessionManager.getBareAddress
```
Alternative method:
```
org.jivesoftware.spark.SessionManager.getUserBareAddress
```
Alternative method renamed from getBareUserAddress() to getUserBareAddress().
2020-10-25 20:59:23 +03:00
ff3099aead Replace usage of deprecated method with alternative and remove method itself.
Deprecated method: org.jivesoftware.spark.ui.ChatRoom.getRoomname().
Alternative method: org.jivesoftware.spark.ui.ChatRoom.getBareJid().
2020-10-25 20:09:41 +03:00
bb937127ab march master branch toward 2.9.4-SNAPSHOT 2020-10-24 07:05:19 -05:00
24dce9789b Denote Spark 2.9.3 Release 2020-10-24 06:40:29 -05:00
31abf18ca4 Refactor: rename getRoomJid() to getBareJid() in ChatRoom class and its derived classes for more clarity. 2020-10-07 18:14:09 +03:00
928a0ad85e march master branch toward 2.9.3-SNAPSHOT 2020-08-30 13:22:12 -05:00
53d9ed6df3 Denote Spark 2.9.2 Release 2020-08-30 19:46:45 +02:00
407c8cdad3 Merge pull request #517 from guusdk/SPARK-2157_fastpath-jid-compare-fix
SPARK-2157: Prevent comparing JID with String for FastPath agent
2020-08-26 21:37:24 +03:00
835f63ce93 SPARK-2157: Prevent comparing JID with String for FastPath agent 2020-08-26 20:01:41 +02:00
2c48ffe1a8 march master branch toward 2.9.2-SNAPSHOT 2020-08-25 13:35:13 -05:00
4c7f54d2be Denote Spark 2.9.1 Release 2020-08-25 13:14:31 -05:00
5916368145 march master branch toward 2.9.1-SNAPSHOT 2020-08-17 08:13:37 -05:00
f1465b521d Denote Spark 2.9.0 Release 2020-08-17 07:13:31 -05:00
49149a5bf0 Increase version number of all plugins
Since the last release, major changes were applied to the project. To reflect this, I've increased the version number of all of the plugins.

Not all plugins might have had functional changes, but given that the project structure has changed a lot, some kind of increase (that will allow us to tell plugins before and after this release apart) could be helpful.
2020-08-16 18:56:14 +02:00
736fdbcea1 SPARK-2093 plugins fixes 2020-06-08 12:52:17 +03:00
61bbb64501 SPARK-2092: Fix Fastpath plugin
A API change in Smack went unnoticed, and caused the FastPath plugin to not load correctly. This commit fixes that, and increases the version number of the plugin.
2019-05-17 09:41:00 +02:00