-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generalize by renaming, per @DmitryLitvintsev suggestion
* `PoolManagerGetPoolsBySourcePoolPoolGroupMessage` -> `PoolManagerGetPoolsByPoolGroupOfPoolMessage` * `PoolListBySourcePoolPoolGroup` -> `PoolListByPoolGroupOfPool` * `getPoolsBySourcePoolPoolGroup()` -> `getPoolsByPoolGroupOfPool()` * `(_?)sourcePool` -> `\1poolName` * `getSourcePool()` -> `getPoolName()` * "source pool" -> "pool"
- Loading branch information
1 parent
55e5e29
commit 8f6e24a
Showing
8 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...les/src/main/java/diskCacheV111/vehicles/PoolManagerGetPoolsByPoolGroupOfPoolMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package diskCacheV111.vehicles; | ||
|
||
import static java.util.Objects.requireNonNull; | ||
|
||
public class PoolManagerGetPoolsByPoolGroupOfPoolMessage | ||
extends PoolManagerGetPoolsMessage { | ||
|
||
private static final long serialVersionUID = 4423670920097918847L; | ||
|
||
private final String _poolName; | ||
|
||
public PoolManagerGetPoolsByPoolGroupOfPoolMessage(String poolName) { | ||
_poolName = requireNonNull(poolName); | ||
} | ||
|
||
public String getPoolName() { | ||
return _poolName; | ||
} | ||
} |
19 changes: 0 additions & 19 deletions
19
...src/main/java/diskCacheV111/vehicles/PoolManagerGetPoolsBySourcePoolPoolGroupMessage.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters