[Cherbot-commit] SF.net SVN: cherbot: [58] trunk/src/net/sf/cherbot/metaserver/ MetaServerEntry.jav
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-06-10 10:12:32
|
Revision: 58
http://svn.sourceforge.net/cherbot/?rev=58&view=rev
Author: christianhujer
Date: 2007-06-10 03:12:30 -0700 (Sun, 10 Jun 2007)
Log Message:
-----------
Added missing @NotNull annotations.
Modified Paths:
--------------
trunk/src/net/sf/cherbot/metaserver/MetaServerEntry.java
Modified: trunk/src/net/sf/cherbot/metaserver/MetaServerEntry.java
===================================================================
--- trunk/src/net/sf/cherbot/metaserver/MetaServerEntry.java 2007-06-09 17:47:23 UTC (rev 57)
+++ trunk/src/net/sf/cherbot/metaserver/MetaServerEntry.java 2007-06-10 10:12:30 UTC (rev 58)
@@ -58,7 +58,7 @@
* @param unknown3 Unknown3.
* @param unknown4 Unknown4.
*/
- public MetaServerEntry(final String ipaddress, final String unknown1, final String hostname, final int playerCount, final String version, final String description, final String unknown2, final String unknown3, final String unknown4) {
+ public MetaServerEntry(@NotNull final String ipaddress, @NotNull final String unknown1, @NotNull final String hostname, final int playerCount, @NotNull final String version, @NotNull final String description, @NotNull final String unknown2, @NotNull final String unknown3, @NotNull final String unknown4) {
this.ipaddress = ipaddress;
this.unknown1 = unknown1;
this.hostname = hostname;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|